Probabilistic Inference in Machine Learning. MSc in Data Science Methodology. Barcelona School of Economics.

Supervisor: Prof. Lorenzo Cappello, PhD

Loading required package: Rcpp
This is rstanarm version 2.32.1
- See https://mc-stan.org/rstanarm/articles/priors for changes to default priors!
- Default priors may change, so it's safest to specify priors, even if equivalent to the defaults.
- For execution on a local, multicore CPU with excess RAM we recommend calling
  options(mc.cores = parallel::detectCores())
Loading required package: MASS
Loading required package: Matrix

Attaching package: 'Matrix'
The following objects are masked from 'package:tidyr':

    expand, pack, unpack
Loading required package: lme4

arm (Version 1.14-4, built: 2024-4-1)
Working directory is /home/sobottka/BSE/2nd_Term/Probabilistic/Bayesian_Algorithm

Attaching package: 'arm'
The following objects are masked from 'package:rstanarm':

    invlogit, logit

Attaching package: 'dplyr'
The following object is masked from 'package:MASS':

    select
The following object is masked from 'package:gridExtra':

    combine
The following objects are masked from 'package:stats':

    filter, lag
The following objects are masked from 'package:base':

    intersect, setdiff, setequal, union
Loading required package: StanHeaders

rstan version 2.32.7 (Stan version 2.32.2)
For execution on a local, multicore CPU with excess RAM we recommend calling
options(mc.cores = parallel::detectCores()).
To avoid recompilation of unchanged Stan programs, we recommend calling
rstan_options(auto_write = TRUE)
For within-chain threading using `reduce_sum()` or `map_rect()` Stan functions,
change `threads_per_chain` option:
rstan_options(threads_per_chain = 1)

Attaching package: 'rstan'
The following object is masked from 'package:arm':

    traceplot
The following object is masked from 'package:tidyr':

    extract
This is loo version 2.8.0
- Online documentation and vignettes at mc-stan.org/loo
- As of v2.0.0 loo defaults to 1 core but we recommend using as many as possible. Use the 'cores' argument or set options(mc.cores = NUM_CORES) for an entire session. 

Attaching package: 'loo'
The following object is masked from 'package:rstan':

    loo
This is bayesplot version 1.11.1
- Online documentation and vignettes at mc-stan.org/bayesplot
- bayesplot theme set to bayesplot::theme_default()
   * Does _not_ affect other ggplot2 plots
   * See ?bayesplot_theme_set for details on theme setting

Abstract

1. Introduction

In this project, we perform a hierarchical Bayesian analysis of the radon dataset. Our objective is to explore the radon levels in houses across various counties and understand how the levels vary both within and between counties. Inspired by Gelman and Hill’s work on hierarchical models, we build on this foundation by implementing an enhanced Hamiltonian Monte Carlo approach in Stan. This method is expected to provide efficient and robust posterior inference for our multilevel model.

2. Exploring the Data

In this section, we explore the radon dataset to understand its structure and key variables.

Importing and Inspecting the Data

First, we load the radon dataset. We can do this by using the load method as the dataset is included in the rstan package. Alternatively, we added the file as a CVS in the Project.zip:

data("radon") 
#radon<-read.csv("radon_exported.csv") if the above gives errors due to package incompatibility. 

Let’s inspect the first few rows:

head(radon)
  floor county  log_radon log_uranium
1     1 AITKIN 0.83290912  -0.6890476
2     0 AITKIN 0.83290912  -0.6890476
3     0 AITKIN 1.09861229  -0.6890476
4     0 AITKIN 0.09531018  -0.6890476
5     0  ANOKA 1.16315081  -0.8473129
6     0  ANOKA 0.95551145  -0.8473129

The dataset contains the following variables:

  • \(floor\): Indicates whether the measurement was taken in a basement (coded as 0) or on an upper floor (coded as 1).

  • \(county\): Identifies the county for each observation.

  • \(log_radon\): The natural logarithm of the radon measurement. This transformation is applied to stabilize variance and approach normality in the distribution of radon levels.

  • \(log_uranium\): The natural logarithm of the uranium measurement. Uranium concentration in the soil is considered a potential predictor of radon levels, as radon is a decay product of uranium.

We also check the dimensions of the dataset:

dim(radon)
[1] 919   4

This dataset consists of 919 observations.

Distribution of Radon Levels

To understand the distribution of radon levels, we visualize the histogram of the log-transformed radon measurements:

ggplot(radon, aes(x = log_radon)) + 
  geom_histogram(bins = 30, fill = "skyblue", color = "black") +
  labs(title = "Distribution of Log Radon Levels", x = "Log Radon", y = "Frequency")

The distribution of log-transformed radon levels is roughly unimodal, centered around 1 to 2 on the log scale, and shows a moderate right tail. The log transformation reduces skew compared to raw radon measurements and helps stabilize variance, making it more amenable to hierarchical modeling.

County-Level Differences

Next, we explore how radon levels vary by county. A boxplot of log_radon across counties provides a clear visualization of the differences:

ggplot(radon, aes(x = factor(county), y = log_radon)) + 
  geom_boxplot(fill = "lightgreen", color = "black") +
  labs(title = "Radon Levels by County", x = "County", y = "Log Radon") +
  theme(axis.text.x = element_text(angle = 90, hjust = 1))

There is clear variation in log radon levels across counties, with some counties showing higher or lower median values than others. Within each county, there is also notable spread in the data. This suggests both between-county and within-county variability and reinforces the need for a hierarchical modeling approach that can capture these different levels of variation.

Additionally, we also compute and plot the mean log radon level for each county:

county_summary <- radon %>%
  group_by(county) %>%
  summarise(mean_log_radon = mean(log_radon, na.rm = TRUE),
            n = n())

ggplot(county_summary, aes(x = reorder(county, mean_log_radon), y = mean_log_radon)) +
  geom_point() +
  coord_flip() +
  scale_x_discrete(expand = expansion(mult = c(0.05, 0.05))) +
  labs(title = "Mean Log Radon Levels by County",
       x = "County",
       y = "Mean Log Radon") +
  theme_minimal() +
  theme(axis.text.y = element_text(size = 4))

Again, this shows that average radon levels vary noticeably across counties, with some counties having much lower mean log radon than others. The clear gradient from left to right indicates substantial between-county variation, which supports using a hierarchical model to capture these differences alongside the within-county variability.

Exploring Relevant Predictors

An important predictor in our dataset is the \(floor\) variable, which indicates if the measurement is from a basement (0) or an upper floor (1). We examine how radon levels differ based on this predictor:

ggplot(radon, aes(x = factor(floor), y = log_radon)) + 
  geom_boxplot(fill = "orange", color = "black") +
  labs(title = "Radon Levels by Floor (Basement vs Upper Floor)", 
       x = "Floor (0 = Basement, 1 = Upper Floor)", y = "Log Radon")

We can see that homes measured in the basement tend to have higher radon levels than those measured on an upper floor. Although there is overlap between the two groups, the boxplot shows a higher median and upper quartile for basement measurements, which aligns with the idea that radon gas often enters through the ground and accumulates more in lower levels of a building.

Note: Additionally, including log_uranium as a predictor in the model allows us to account for potential covariate effects that might explain some of the variability in radon levels.

Identifying the Hierarchical Structure

The radon data are naturally grouped by county, meaning that multiple observations (houses) are nested within each county. This leads to two sources of variability:

  • Within-County Variability: Variation in radon levels among houses within the same county.

  • Between-County Variability: Variation in the average radon level from one county to another.

To further illustrate this structure, we summarize key statistics by county:

county_stats <- radon %>%
  group_by(county) %>%
  summarise(n = n(), 
            mean_log_radon = mean(log_radon, na.rm = TRUE), 
            sd_log_radon = sd(log_radon, na.rm = TRUE))
county_stats
# A tibble: 85 × 4
   county        n mean_log_radon sd_log_radon
   <fct>     <int>          <dbl>        <dbl>
 1 AITKIN        4          0.715        0.432
 2 ANOKA        52          0.891        0.718
 3 BECKER        3          1.09         0.717
 4 BELTRAMI      7          1.19         0.894
 5 BENTON        4          1.28         0.415
 6 BIGSTONE      3          1.54         0.504
 7 BLUEEARTH    14          1.93         0.542
 8 BROWN         4          1.65         0.595
 9 CARLTON      10          0.977        0.585
10 CARVER        6          1.22         1.90 
# ℹ 75 more rows

The table shows that each of the 85 counties has a different number of observations (n) and distinct mean and standard deviation of log radon levels. Some counties have very few data points (e.g., 3 or 4), while others have many more (e.g., 52). The mean log radon values also vary considerably across counties, as do their standard deviations. This variation in both sample size and radon levels by county underscores the need for a hierarchical model that can account for county-to-county differences (random effects) while borrowing strength across counties.

3. Baseline Hierarchical Model

In this section, we build our baseline hierarchical model and outline our inference goals. We load our Stan model (saved as radon_model.stan), prepare the data for modeling, run the posterior sampler using Hamiltonian Monte Carlo (HMC) via the No-U-Turn Sampler (NUTS), and perform several diagnostic checks.

3.1 Model Specifications

Hierarchical Model Formulation

We aim to model the log-transformed radon level \(y_{ij}\) for house \(i\) in county \(j\). We include a fixed effect for whether the measurement was taken in the basement (0) or on an upper floor (1). In addition, each county has its own intercept, reflecting the idea that some counties may have generally higher or lower radon levels. Note that this model is inspired by the hierarchical models presented by Gelman and Hill, 2007 (p. 256f.). We can write this as:

\[ \begin{aligned} y_{ij} &\sim \mathcal{N}(\alpha_j + \beta \, x_{ij}, \sigma^2), \\[6pt] \alpha_j &\sim \mathcal{N}(\mu_\alpha, \tau^2), \end{aligned} \] where:

  • \(y_{ij}\) is the log radon measurement for house \(i\) in county \(j\).

  • \(x_{ij}\) is the floor variable (0 = basement, 1 = upper floor).

  • \(\alpha_j\) is the county-specific intercept, which follows a normal distribution centered at \(\mu_\alpha\) with standard deviation \(\tau\).

  • \(\beta\) is the fixed effect for the floor predictor.

  • \(\sigma\) is the within-county (house-level) residual standard deviation.

  • \(\mu_\alpha\) is the overall (global) intercept across all counties.

  • \(\tau\) captures the between-county variability.

Moreover, Gelman and Hill (2007) advocate for using weakly informative priors in multilevel models. They recommend broad normal priors with large variances for location parameters (pp. 420–422) and half-Cauchy priors for scale parameters to regularize the model without imposing overly strict constraints (pp. 427–433, 500). Following these recommendations, we specify the following priors: \[ \begin{alignedat}{2} \mu_\alpha &\sim \mathcal{N}(0, 10^2),\\[6pt] \tau &\sim \text{Cauchy}^+(0, 2.5),\\[6pt] \beta &\sim \mathcal{N}(0, 10^2),\\[6pt] \sigma &\sim \text{Cauchy}^+(0, 2.5). \end{alignedat} \] These choices provide sufficient flexibility for the data to inform the posterior while ensuring adequate regularization of our hierarchical model.

We denote this model as our baseline model. A plate diagram for the model is provided in the file baseline_model.jpeg.

Goal of Bayesian Inference

The goal of this Bayesian hierarchical model is to estimate the posterior distributions of all unknown parameters:

  • \(\beta\) (effect of basement vs. upper floor),

  • \(\mu_\alpha\) (overall average intercept),

  • \(\tau\) (between-county variability),

  • \(\sigma\) (within-county variability), and

  • each county-specific intercept \(\alpha_j\).

By estimating these posterior distributions, we can quantify both the uncertainty at the county level (how counties differ from one another) and the uncertainty at the house level (residual variability around each county’s intercept).

Note: We built this baseline model formulation in the file radon_model_centered.stan.

3.2 Sampling

Data Preparation for Stan

We first prepare the data in a list that matches the format expected by the Stan model. Note that we convert the county variable to an integer to serve as an index for the hierarchical structure.

radon_data <- list(
  N = nrow(radon),
  J = length(unique(radon$county)),
  county = as.integer(radon$county),
  y = radon$log_radon,
  x = radon$floor
)

Running the Stan Sampler

We run our model using the No-U-Turn Sampler (NUTS), an advanced variant of Hamiltonian Monte Carlo (HMC), which is the default algorithm for Stan. NUTS leverages gradient information from the posterior to efficiently navigate high-dimensional parameter spaces. It adaptively determines the optimal path length (i.e., the number of leapfrog steps), thereby we can avoide unnecessary computations and manual tuning. This automatic adaptation helps ensure that the sampler explores the posterior distribution thoroughly, leading to better convergence and improved effective sample sizes. In our analysis, we begin with a baseline setup and aim to further refine the sampler in the subsequent parts.

We now run our Stan model using 4 chains with 2000 iterations each (1000 warmup iterations and 1000 sampling iterations):

fit <- stan(file = "radon_model_centered.stan",
            data = radon_data,
            iter = 2000,
            warmup = 1000,
            chains = 4,
            seed = 123)
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 1: 
Chain 1: Gradient evaluation took 9.6e-05 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.96 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 2: 
Chain 2: Gradient evaluation took 9.6e-05 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 0.96 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 3: 
Chain 3: Gradient evaluation took 8.8e-05 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 0.88 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 8.4e-05 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 0.84 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.41 seconds (Warm-up)
Chain 1:                0.294 seconds (Sampling)
Chain 1:                0.704 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.407 seconds (Warm-up)
Chain 2:                0.4 seconds (Sampling)
Chain 2:                0.807 seconds (Total)
Chain 2: 
Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.397 seconds (Warm-up)
Chain 4:                0.404 seconds (Sampling)
Chain 4:                0.801 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.458 seconds (Warm-up)
Chain 3:                0.444 seconds (Sampling)
Chain 3:                0.902 seconds (Total)
Chain 3: 

Summary of the posterior distributions for the key parameters:

print(fit, pars = c("beta", "mu_alpha", "tau", "sigma"), probs = c(0.025, 0.5, 0.975))
Inference for Stan model: anon_model.
4 chains, each with iter=2000; warmup=1000; thin=1; 
post-warmup draws per chain=1000, total post-warmup draws=4000.

          mean se_mean   sd  2.5%   50% 97.5% n_eff Rhat
beta     -0.66       0 0.07 -0.79 -0.66 -0.53  4247    1
mu_alpha  1.49       0 0.05  1.39  1.49  1.59  3114    1
tau       0.32       0 0.05  0.24  0.32  0.42  1365    1
sigma     0.73       0 0.02  0.69  0.73  0.76  6424    1

Samples were drawn using NUTS(diag_e) at Tue Mar 25 11:27:14 2025.
For each parameter, n_eff is a crude measure of effective sample size,
and Rhat is the potential scale reduction factor on split chains (at 
convergence, Rhat=1).

Parameter Estimates:

  • \(\beta\): The fixed effect for the floor variable has a mean of -0.66, with a 95% credible interval from -0.80 to -0.53. This negative value suggests that, all else being equal, measurements taken on an upper floor (assuming floor is coded as 1 for upper floor) are associated with lower log radon levels compared to basement measurements.

  • \(\mu_\alpha\): The overall (global) intercept is estimated at 1.49, with a credible interval from 1.39 to 1.59. This represents the average log radon level for the baseline (reference) group.

  • \(\tau\): The between-county standard deviation is estimated at 0.32 (credible interval: 0.24 to 0.42), quantifying the variability in county-specific intercepts.

  • \(\sigma\): The residual standard deviation (within-county variability) is estimated at 0.73 (credible interval: 0.69 to 0.76).

3.3 Convergence Statistics

In this subsection, we assess the convergence of our Markov chains using a suite of diagnostic tools we ahve learned in class a swell as some additonal ones that are available in the bayesplot package. After sampling, it is crucial to verify that the chains have stabilized in the same region of parameter space, exhibit minimal autocorrelation, and yield sufficiently large effective sample sizes. These checks ensure that our posterior samples are reliable and that the sampler has thoroughly explored the target distribution.

Trace Plots

Trace plots provide to us a visual representation of the sampling paths across chains. We expect that well-mixed chains should appear as overlapping, horizontal “fuzzy caterpillars.”

We convert the fitted model to an array for bayesplot and investigate the traces:

posterior_samples <- as.array(fit)
mcmc_trace(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))

From these trace plots, we see that all four chains appear to have converged and are mixing well. Each chain fluctuates around a similar central value for each parameter, and we observe no pronounced upward or downward trends. The overlap among chains is substantial, suggesting that we have reached a stable sampling distribution. We also see no abrupt jumps or signs of poor mixing, which reinforces that our NUTS sampler is exploring the posterior efficiently.

Pair Plots

Pair plots help us assess potential correlations between parameters and they also provide an overview of the joint posterior distributions.

mcmc_pairs(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))

Marginal Distributions (Diagonals):

Each parameter’s histogram is roughly unimodal and does not exhibit strong skew or multiple modes. This suggests that the posterior for each parameter is relatively stable and well-identified.

Pairwise Relationships (Off-Diagonals):

The scatter plots show how each parameter’s posterior samples relate to the others. We do not see strong linear or nonlinear patterns, indicating that no pair of parameters is highly correlated. This relative lack of strong correlation is a good sign for efficient sampling and clear parameter interpretation.

Overall Posterior Behavior:

The tight, roughly elliptical scatter clouds in the off-diagonal plots, combined with unimodal marginals, suggest that our model converged well and that the parameters are well estimated. There is no visual evidence of pathological behavior such as multi-modality or heavy tail correlations that could impede inference.

R-hat

We ran multiple Markov chains in parallel. When each chain converges to the same region of parameter space, it provides evidence that the sampler is exploring the true posterior rather than getting stuck in a local mode. In Stan’s output, the \(\hat{R}\) statistic quantifies the potential scale reduction factor.

rhat_values <- rhat(fit, pars = c("beta", "mu_alpha", "tau", "sigma"))
print(rhat_values)
     beta  mu_alpha       tau     sigma 
0.9992642 0.9998036 1.0009017 0.9993727 

An \(\hat{R}\) value of about 1 indicates perfect convergence, meaning that the variability between the chains is nearly identical to the variability within each chain. Typically, values below 1.1 are considered acceptable, so our values confirm that our chains have converged well. This gives us confidence that the posterior estimates are reliable and that our sampler has thoroughly explored the target distribution.

Effective Sample Size (ESS)

The effective sample size (ESS) measures how many nearly independent draws we have relative to the total samples. High autocorrelation within a chain reduces the ESS. Stan reports both an absolute ESS and an ESS ratio. A higher ESS ratio indicates more efficient sampling.

ess_values <- neff_ratio(fit, pars = c("beta", "mu_alpha", "tau", "sigma"))
print(ess_values)
     beta  mu_alpha       tau     sigma 
1.0617332 0.7784023 0.3412737 1.6060289 

The ESS ratios for \(\beta\) (1.34) and \(\sigma\) (1.79) are greater than 1, which suggests that these parameters are sampled with high efficiency (possibly even benefiting from negative autocorrelation). In contrast, \(\mu_\alpha\) (0.96) is slightly lower, and \(\tau\) (0.35) is notably lower, indicating that these chains exhibit higher autocorrelation and provide fewer independent draws. Although lower ESS ratios can still be acceptable depending on the context, they suggest that additional iterations or further tuning might improve the precision of our estimates for these parameters.

Autocorrelation

Even if the chains converge, strong autocorrelation in the draws can reduce the effective sample size. We can visualize the autocorrelation function (ACF) for each parameter using bayesplot.

posterior_samples <- as.array(fit)
mcmc_acf_bar(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))

From the ACF plots, we see that \(\beta\), \(\mu_\alpha\), and \(\sigma\) exhibit a relatively rapid decay toward zero, indicating that consecutive draws for these parameters are fairly uncorrelated. In contrast, \(\tau\) shows a slower decay, reflecting higher autocorrelation. This observation aligns with \(\tau\) having a lower ESS ratio. While the chains converge overall, the slower decay for \(\tau\) implies that we might need additional iterations — or a different parameterization — to achieve a higher number of effectively independent draws for this parameters.

Density Plots

Density plots help visualize the marginal posterior distributions of each parameter. By overlaying densities from each chain, we can quickly assess whether the chains have converged to the same distribution and identify any irregularities such as multimodality or heavy tails.

posterior_samples <- as.array(fit)
mcmc_dens_overlay(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))

These overlaid density plots show that all four chains produce somewhat identical posterior distributions for each parameter, indicating strong convergence and no evidence of multi-modality. Each parameter’s distribution appears unimodal, and the curves from different chains overlap closely. This alignment suggests that the sampler has converged to a stable region of parameter space and that our posterior estimates for \(\beta\), \(\mu_\alpha\), \(\tau\), and \(\sigma\) are both consistent and reliable.

4. Algorithm Enhancement

In this section, we explore several potential enhancements to our baseline algorithm. Although our baseline hierarchical model—using a centered parameterization and basic Hamiltonian Monte Carlo (HMC)—performs reasonably well, our primary focus here is to experiment with alternative methods to further improve sampling efficiency and reduce autocorrelation. Our main goal is to enhance the HMC algorithm for the radon data problem.

We will begin by implementing an Enhanced Mass Matrix Adaptation inspired by the Riemannian Manifold HMC (RMHMC) approach, which seeks to capture the local geometry of the posterior distribution more accurately than standard methods. Next, we will consider a non-centered parameterization along with other reparameterization strategies to further reduce posterior correlations. We then plan to explore advanced warm-up strategies by combining NUTS with variational inference techniques, followed by further reparameterization techniques, and finally, hybrid sampling approaches. Each enhancement will be evaluated in terms of convergence diagnostics and overall efficiency.

Diagnostics Routine

Since we will run many different models, we set up an automated diagnostics routine to standardize the evaluation of each Stan model run. This routine will:

  • Extract key convergence metrics (R-hat and effective sample size [ESS]) from the model summary.

  • Compute model comparison metrics, such as leave-one-out cross-validation (LOO) using the \(loo\) package.

  • Generate and automatically save diagnostic plots, including trace plots, autocorrelation (ACF) plots, and density overlays.

Below is the function that implements this automated diagnostics routine:

run_diagnostics <- function(fit, model_name = "model", output_folder = "plots", print_plots = TRUE) {
  if (!dir.exists(output_folder)) {
    dir.create(output_folder)
  }
  
  sum_fit <- summary(fit, pars = c("beta", "mu_alpha", "tau", "sigma"))$summary
  rhat_values <- sum_fit[, "Rhat"]
  ess_values <- sum_fit[, "n_eff"]
  
  loo_fit <- loo(fit)
  
  diag_df <- data.frame(
    Parameter = rownames(sum_fit),
    Rhat = rhat_values,
    ESS = ess_values,
    Model = model_name,
    LOO_ELPD = loo_fit$estimates["elpd_loo", "Estimate"]
  )
  
  posterior_samples <- as.array(fit)
  trace_plot <- mcmc_trace(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))
  if (print_plots) print(trace_plot)
  ggsave(file.path(output_folder, paste0(model_name, "_trace_plot.png")),
         trace_plot, width = 10, height = 8)

  acf_plot <- mcmc_acf_bar(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))
  if (print_plots) print(acf_plot)
  ggsave(file.path(output_folder, paste0(model_name, "_acf_plot.png")),
         acf_plot, width = 10, height = 8)
  
  dens_plot <- mcmc_dens_overlay(posterior_samples, pars = c("beta", "mu_alpha", "tau", "sigma"))
  if (print_plots) print(dens_plot)
  ggsave(file.path(output_folder, paste0(model_name, "_density_overlay.png")),
         dens_plot, width = 10, height = 8)
  
  return(diag_df)
}

Application to the Fitted Baseline Model:

baseline_diag <- run_diagnostics(fit, model_name = "baseline_model", print_plots = FALSE)

Now, all key diagnostic metrics and plots for the baseline model are stored and can be used for comparison as we implement and evaluate alternative enhancements.

4.1 Enhanced Mass Matrix Adaptation

While NUTS typically uses a diagonal or dense mass matrix for adapting its stepsize and trajectory length, further improvements can be achieved by employing a Riemannian metric. The Riemannian Manifold HMC adapts to the local curvature of the posterior, allowing for more efficient exploration in regions where the geometry is complex.

Stan does not implement a full RMHMC algorithm; however, we can approximate some of its benefits by using a dense mass matrix adaptation. This allows the sampler to capture some of the local correlations in the posterior, which is an important step towards the RMHMC approach.

fit_dense <- stan(file = "radon_model_centered.stan",
                  data = radon_data,
                  iter = 2000,
                  warmup = 1000,
                  chains = 4,
                  seed = 123,
                  control = list(metric = "dense_e", adapt_engaged = TRUE))

Convergence Checks

Running diagnostics on the fitted model:

dense_diag <- run_diagnostics(fit_dense, model_name = "dense_mass_matrix")

The plots appear very similar to those of the baseline model.

  • Trace Plots: The chains for each parameter (beta, mu_alpha, tau, sigma) appear well-mixed, with no visible trends or drifts, indicating good convergence.

  • Autocorrelation Plots: The ACFs show a rapid decay toward zero, suggesting that the draws are relatively independent and thus the sampler is efficient.

  • Density Overlays: The posterior distributions are unimodal and overlap closely across the four chains, reinforcing that the sampler converged to the same region in parameter space.

Model Comparison

Next we compare the model to the baseline Model.

combined_diagnostics <- bind_rows(baseline_diag, dense_diag)
print(combined_diagnostics)
             Parameter      Rhat      ESS             Model  LOO_ELPD
beta...1          beta 0.9992642 4246.933    baseline_model -1037.199
mu_alpha...2  mu_alpha 0.9998036 3113.609    baseline_model -1037.199
tau...3            tau 1.0009017 1365.095    baseline_model -1037.199
sigma...4        sigma 0.9993727 6424.116    baseline_model -1037.199
beta...5          beta 1.0003583 6580.948 dense_mass_matrix -1037.346
mu_alpha...6  mu_alpha 0.9997937 6229.065 dense_mass_matrix -1037.346
tau...7            tau 1.0001146 2147.312 dense_mass_matrix -1037.346
sigma...8        sigma 0.9996516 7291.118 dense_mass_matrix -1037.346

As seen in the plots both models show excellent convergence, with R-hat values very close to 1 and high effective sample sizes. The LOO-ELPD values are also nearly identical, suggesting that the dense mass matrix version provides a slightly better (though not dramatically different) fit. Notably, the ESS for \(\tau\) is higher in the dense mass matrix model, indicating improved sampling efficiency for that parameter compared to the baseline model.

4.2 Non-Centered Parametrization

According to Papaspiliopoulos, Roberts, and Sköld (2003), non-centered parameterization can improve sampling efficiency in hierarchical models. Instead of sampling \(\alpha_j\) directly, we introduce a latent variable \(\alpha_{\text{raw}, j}\) that follows a standard normal, and then transform it: \[\alpha_j = \mu_\alpha + \alpha_{\text{raw}, j} \cdot \tau.\] To recap, In the centered parameterization on the other hand, we model the county-level intercepts \(\alpha_j\) directly as being drawn from a common distribution with parameters \(\mu_\alpha\) and \(\tau\).

This model assumes that each county-specific intercept \(\alpha_j\) is drawn from a population distribution centered at \(\mu_\alpha\) with standard deviation \(\tau\), allowing for partial pooling of information across counties. The slope \(\beta\) represents the effect of floor level, and \(\sigma\) is the residual variability within counties.

We call this the centered parameterization because we sample \(\alpha_j\) directly from its normal distribution: \[ \alpha_j \sim \mathcal{N}(\mu_\alpha, \tau^2), \] as opposed to defining a standard normal variable and transforming it (as in the non-centered case).

In the non-centered parameterization, we instead define: \[ \alpha_j = \mu_\alpha + \tau \cdot \alpha_{\text{raw},j}, \quad \text{with} \quad \alpha_{\text{raw},j} \sim \mathcal{N}(0, 1). \] Theoretically, this reparameterization can improve convergence and sampling efficiency, especially when the data are weakly informative about group-level variation (e.g., sparse counties or small \(\tau\)). In contrast, the centered parameterization tends to work better when group-level effects are well-identified from the data (e.g., larger sample size per group, stronger signals).

Note: We built this advanced model formulation in the file radon_model_non-centered.stan.

As done before, we load our Stan model (saved as radon_model_non-centered.stan), and run the posterior sampler using NUTS Sampler (all as in section 3):

fit_nc <- stan(file = "radon_model_non-centered.stan",
            data = radon_data,
            iter = 2000,
            warmup = 1000,
            chains = 4,
            seed = 123)
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000185 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.85 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000183 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.83 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000187 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.87 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000178 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.78 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 1.755 seconds (Warm-up)
Chain 2:                0.987 seconds (Sampling)
Chain 2:                2.742 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 1.854 seconds (Warm-up)
Chain 1:                0.983 seconds (Sampling)
Chain 1:                2.837 seconds (Total)
Chain 1: 
Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 1.811 seconds (Warm-up)
Chain 3:                0.99 seconds (Sampling)
Chain 3:                2.801 seconds (Total)
Chain 3: 
Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 1.884 seconds (Warm-up)
Chain 4:                1.01 seconds (Sampling)
Chain 4:                2.894 seconds (Total)
Chain 4: 

Convergence Checks

Running diagnostics on the fitted model:

nc_diag <- run_diagnostics(fit_nc, model_name = "non_centered_pararmeterization")

From these plots, we can see that the chains mix well and there are no signs of non-convergence. The trace plots show stable, overlapping “fuzzy caterpillars,” indicating that the sampler is exploring a consistent region of the parameter space for each parameter. The autocorrelation plots reveal a relatively fast decay, suggesting an efficient sampling process with low correlation between successive draws. Finally, the density overlays for each chain align closely, reinforcing that the chains converge to the same posterior distribution. The only difference we can notice compared to the baseline model is that the \(\mu_\alpha\) shows a slower decay in this model.

Model Comparison

Next we compare the model to the baseline model.

combined_diagnostics <- bind_rows(baseline_diag, nc_diag)
print(combined_diagnostics)
             Parameter      Rhat      ESS                          Model
beta...1          beta 0.9992642 4246.933                 baseline_model
mu_alpha...2  mu_alpha 0.9998036 3113.609                 baseline_model
tau...3            tau 1.0009017 1365.095                 baseline_model
sigma...4        sigma 0.9993727 6424.116                 baseline_model
beta...5          beta 0.9999682 7439.011 non_centered_pararmeterization
mu_alpha...6  mu_alpha 0.9999082 2859.178 non_centered_pararmeterization
tau...7            tau 1.0004136 1843.028 non_centered_pararmeterization
sigma...8        sigma 1.0008327 6204.392 non_centered_pararmeterization
              LOO_ELPD
beta...1     -1037.199
mu_alpha...2 -1037.199
tau...3      -1037.199
sigma...4    -1037.199
beta...5     -1037.368
mu_alpha...6 -1037.368
tau...7      -1037.368
sigma...8    -1037.368

Again, both models show excellent convergence diagnostics with Rhat values very close to 1 across all parameters, indicating that the chains have stabilized and mixed well. The ESS are high for both models, although there are some differences: for example, the non-centered model achieves a higher ESS for \(\beta\), while the ESS for \(\mu_\alpha\) is somewhat lower compared to the baseline. The leave-one-out expected log predictive density (LOO_ELPD) is nearly identical between the two models (approximately -1037 for the baseline and -1036.5 for the non-centered model), indicating similar predictive performance. Overall, these results suggest that both parameterizations converge reliably, with the non-centered parameterization offering marginal improvements in sampling efficiency for certain parameters.

4.3 Automatic Reparameterization

One of the next steps in our algorithm enhancement is to automate the choice between parameterizations. Instead of manually deciding whether to use the centered or non-centered formulation, we can set up a routine that compares key diagnostics—such as effective sample size (ESS), R-hat, and LOO-ELPD—from both models and selects the one with better performance. This automatic reparameterization approach can help streamline our workflow by ensuring that the model used for inference is optimally tuned for sampling efficiency.

The basic idea is to:

  • Run both the baseline (centered) and non-centered models.

  • Extract the diagnostic metrics using our \(run_diagnostics()\) function.

  • Compare the average ESS (or avergae Rhat or LOO_ELPD) and choose the model that exhibits better convergence properties.

Below is a function to demonstrate this comparison:

choose_best_model <- function(diag_baseline, diag_noncentered) {
  avg_ess_baseline <- mean(diag_baseline$ESS, na.rm = TRUE)
  avg_ess_noncentered <- mean(diag_noncentered$ESS, na.rm = TRUE)

  avg_rhat_baseline <- mean(diag_baseline$Rhat, na.rm = TRUE)
  avg_rhat_noncentered <- mean(diag_noncentered$Rhat, na.rm = TRUE)
  
  cat("Baseline Model - Avg ESS:", avg_ess_baseline, "Avg Rhat:", avg_rhat_baseline, "\n")
  cat("Non-Centered Model - Avg ESS:", avg_ess_noncentered, "Avg Rhat:", avg_rhat_noncentered, "\n")
  
  if(avg_ess_noncentered > avg_ess_baseline && avg_rhat_noncentered <= avg_rhat_baseline) {
    chosen_model <- "non_centered_parameterization"
  } else {
    chosen_model <- "baseline_model"
  }
  
  return(chosen_model)
}

After running the diagnostic checks, we can automatically decide the best model:

best_model <- choose_best_model(baseline_diag, nc_diag)
Baseline Model - Avg ESS: 3787.438 Avg Rhat: 0.9998355 
Non-Centered Model - Avg ESS: 4586.402 Avg Rhat: 1.000281 
cat("The automatically selected best model is:", best_model, "\n")
The automatically selected best model is: baseline_model 

For further optimizations, we will run both models (centered and non-centered) and let the routine decide which performs better based on these diagnostics, and then compare the selected model against the baseline.

Checking Dense vs. Default Mass Matrix for Non-Centered Parameterization

Since we have already observed that the centered parameterization performs better with a dense mass matrix adaptation, the next step is to verify whether applying the same dense mass matrix to the non-centered parameterization also yields improvements. In other words, we want to determine if the dense mass matrix adaptation enhances the performance of the non-centered model relative to its default (diagonal) version. If both parameterizations benefit from the dense mass matrix, we will adopt it as our default for future comparisons.

To do this, we run the non-centered model using a dense mass matrix adaptation and compare its diagnostics to those from the non-centered model with the default mass matrix.

fit_nc_dense <- stan(file = "radon_model_non-centered.stan",
                     data = radon_data,
                     iter = 2000,
                     warmup = 1000,
                     chains = 4,
                     seed = 123,
                     control = list(metric = "dense_e", adapt_engaged = TRUE))

Run diagnostics for the dense non-centered model:

nc_dense_diag <- run_diagnostics(fit_nc_dense, model_name = "non_centered_dense", print_plots = FALSE)

As before, we observe successful convergence. (Plots are almost identical, that is why we do not present them here in this report, however, they are stored in the ‘plots’ folder.)

Now, we compare the diagnostics with the non-dense non-centered model:

combined_nc_diag <- bind_rows(nc_diag, nc_dense_diag)
print(combined_nc_diag)
             Parameter      Rhat      ESS                          Model
beta...1          beta 0.9999682 7439.011 non_centered_pararmeterization
mu_alpha...2  mu_alpha 0.9999082 2859.178 non_centered_pararmeterization
tau...3            tau 1.0004136 1843.028 non_centered_pararmeterization
sigma...4        sigma 1.0008327 6204.392 non_centered_pararmeterization
beta...5          beta 0.9991695 6040.582             non_centered_dense
mu_alpha...6  mu_alpha 0.9998339 5573.401             non_centered_dense
tau...7            tau 1.0007901 1713.470             non_centered_dense
sigma...8        sigma 0.9998017 5706.046             non_centered_dense
              LOO_ELPD
beta...1     -1037.368
mu_alpha...2 -1037.368
tau...3      -1037.368
sigma...4    -1037.368
beta...5     -1037.506
mu_alpha...6 -1037.506
tau...7      -1037.506
sigma...8    -1037.506

Based on these diagnostics, the non-centered parameterization with the default (diagonal) mass matrix appears to perform slightly better overall. While the dense mass matrix version shows improved ESS for \(\mu_\alpha\) and \(\tau\), the default non-centered model achieves higher ESS for \(\beta\) and \(\sigma\) and has a marginally better (less negative) LOO-ELPD. Thus, the default non-centered model offers a slight edge in predictive performance and sampling efficiency.

For the further evaluations we will proceed as follows:

  • For the centered model, the dense mass matrix adaptation improves performance, so we would adopt the dense mass matrix.

  • For the non-centered model, the default (diagonal) mass matrix appears to work slightly better, so we would use that one.

Compare Best Centered and Best Non-Centered Parameterization Models

We then automatically select the best-performing model using our diagnostics:

best_model <- choose_best_model(dense_diag, nc_diag)
Baseline Model - Avg ESS: 5562.111 Avg Rhat: 0.9999796 
Non-Centered Model - Avg ESS: 4586.402 Avg Rhat: 1.000281 
cat("The automatically selected best model is:", best_model, "\n")
The automatically selected best model is: baseline_model 

From now on, we will use the baseline model (centered with a dense mass matrix) as our reference for further comparisons and optimizations.

4.4 Combining NUTS with Variational Inference for Warm-start

A good warm-start minimizes the time the sampler spends exploring low-density regions, leading to faster convergence. One strategy to achieve this is to use a variational inference (VI) approximation to initialize the chains for the NUTS sampler. By starting from an area with high posterior probability—as identified by VI—we can reduce the warm-up time and improve overall sampling efficiency.

For Variational Bayes (VB) we first need to compile the stan model:

model_centered <- stan_model(file = "radon_model_centered.stan")

Then, we run variational inference to obtain initial estimates:

fit_vb <- vb(model_centered, data = radon_data, seed = 123)
Chain 1: ------------------------------------------------------------
Chain 1: EXPERIMENTAL ALGORITHM:
Chain 1:   This procedure has not been thoroughly tested and may be unstable
Chain 1:   or buggy. The interface is subject to change.
Chain 1: ------------------------------------------------------------
Chain 1: 
Chain 1: 
Chain 1: 
Chain 1: Gradient evaluation took 4.3e-05 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.43 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Begin eta adaptation.
Chain 1: Iteration:   1 / 250 [  0%]  (Adaptation)
Chain 1: Iteration:  50 / 250 [ 20%]  (Adaptation)
Chain 1: Iteration: 100 / 250 [ 40%]  (Adaptation)
Chain 1: Iteration: 150 / 250 [ 60%]  (Adaptation)
Chain 1: Iteration: 200 / 250 [ 80%]  (Adaptation)
Chain 1: Success! Found best value [eta = 1] earlier than expected.
Chain 1: 
Chain 1: Begin stochastic gradient ascent.
Chain 1:   iter             ELBO   delta_ELBO_mean   delta_ELBO_med   notes 
Chain 1:    100        -1090.433             1.000            1.000
Chain 1:    200        -1087.821             0.501            1.000
Chain 1:    300        -1074.842             0.338            0.012
Chain 1:    400        -1078.344             0.254            0.012
Chain 1:    500        -1074.311             0.204            0.004   MEDIAN ELBO CONVERGED
Chain 1: 
Chain 1: Drawing a sample of size 1000 from the approximate posterior... 
Chain 1: COMPLETED.
Warning: Pareto k diagnostic value is 1.49. Resampling is disabled. Decreasing
tol_rel_obj may help if variational algorithm has terminated prematurely.
Otherwise consider using sampling instead.

When running it as above, we observed issues such as high Pareto k values indicating unstable importance sampling. While the preliminary variational inference results provide an acceptable approximation for our initial analysis, our focus on algorithm optimization motivates us to fine-tune the variational parameters. In particular, we plan to decrease the tolerance (\(tol_rel_obj = 0.001\)) to improve convergence and reliability. This adjustment will force the algorithm to converge more precisely, albeit potentially at the cost of increased runtime.

fit_vb_finetuned <- vb(model_centered, data = radon_data, seed = 123,
                       tol_rel_obj = 0.001) 
Chain 1: ------------------------------------------------------------
Chain 1: EXPERIMENTAL ALGORITHM:
Chain 1:   This procedure has not been thoroughly tested and may be unstable
Chain 1:   or buggy. The interface is subject to change.
Chain 1: ------------------------------------------------------------
Chain 1: 
Chain 1: 
Chain 1: 
Chain 1: Gradient evaluation took 2.4e-05 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.24 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Begin eta adaptation.
Chain 1: Iteration:   1 / 250 [  0%]  (Adaptation)
Chain 1: Iteration:  50 / 250 [ 20%]  (Adaptation)
Chain 1: Iteration: 100 / 250 [ 40%]  (Adaptation)
Chain 1: Iteration: 150 / 250 [ 60%]  (Adaptation)
Chain 1: Iteration: 200 / 250 [ 80%]  (Adaptation)
Chain 1: Success! Found best value [eta = 1] earlier than expected.
Chain 1: 
Chain 1: Begin stochastic gradient ascent.
Chain 1:   iter             ELBO   delta_ELBO_mean   delta_ELBO_med   notes 
Chain 1:    100        -1090.433             1.000            1.000
Chain 1:    200        -1087.821             0.501            1.000
Chain 1:    300        -1074.842             0.338            0.012
Chain 1:    400        -1078.344             0.254            0.012
Chain 1:    500        -1074.311             0.204            0.004
Chain 1:    600        -1071.617             0.171            0.004
Chain 1:    700        -1071.204             0.146            0.003
Chain 1:    800        -1072.658             0.128            0.003
Chain 1:    900        -1073.649             0.114            0.003
Chain 1:   1000        -1070.130             0.103            0.003
Chain 1:   1100        -1071.737             0.003            0.003
Chain 1:   1200        -1069.720             0.003            0.003
Chain 1:   1300        -1071.948             0.002            0.002
Chain 1:   1400        -1069.975             0.002            0.002
Chain 1:   1500        -1071.793             0.002            0.002
Chain 1:   1600        -1070.020             0.002            0.002
Chain 1:   1700        -1068.508             0.002            0.002
Chain 1:   1800        -1071.285             0.002            0.002
Chain 1:   1900        -1069.822             0.002            0.002
Chain 1:   2000        -1070.350             0.002            0.002
Chain 1:   2100        -1070.497             0.002            0.002
Chain 1:   2200        -1069.051             0.001            0.002
Chain 1:   2300        -1070.701             0.001            0.002
Chain 1:   2400        -1068.992             0.001            0.002
Chain 1:   2500        -1067.730             0.001            0.001
Chain 1:   2600        -1069.366             0.001            0.001
Chain 1:   2700        -1068.318             0.001            0.001
Chain 1:   2800        -1067.358             0.001            0.001
Chain 1:   2900        -1068.609             0.001            0.001
Chain 1:   3000        -1067.317             0.001            0.001
Chain 1:   3100        -1069.065             0.001            0.001
Chain 1:   3200        -1069.441             0.001            0.001
Chain 1:   3300        -1069.998             0.001            0.001
Chain 1:   3400        -1068.241             0.001            0.001
Chain 1:   3500        -1068.856             0.001            0.001
Chain 1:   3600        -1068.709             0.001            0.001   MEAN ELBO CONVERGED   MEDIAN ELBO CONVERGED
Chain 1: 
Chain 1: Drawing a sample of size 1000 from the approximate posterior... 
Chain 1: COMPLETED.
Warning: Pareto k diagnostic value is 0.81. Resampling is unreliable.
Increasing the number of draws or decreasing tol_rel_obj may help.

This initial fine-tuning was not completely sufficient, so we decided to both increase the number of posterior draws and further reduce the tolerance (\(tol_rel_obj\)). We iterated on these settings several times until we found a sweet spot—balancing computational efficiency with the quality of the variational approximation.

fit_vb_more_tuned <-vb(model_centered, data = radon_data,  seed = 123,
                       tol_rel_obj = 0.0001,
                       output_samples = 20000) 
Chain 1: ------------------------------------------------------------
Chain 1: EXPERIMENTAL ALGORITHM:
Chain 1:   This procedure has not been thoroughly tested and may be unstable
Chain 1:   or buggy. The interface is subject to change.
Chain 1: ------------------------------------------------------------
Chain 1: 
Chain 1: 
Chain 1: 
Chain 1: Gradient evaluation took 2.6e-05 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 0.26 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Begin eta adaptation.
Chain 1: Iteration:   1 / 250 [  0%]  (Adaptation)
Chain 1: Iteration:  50 / 250 [ 20%]  (Adaptation)
Chain 1: Iteration: 100 / 250 [ 40%]  (Adaptation)
Chain 1: Iteration: 150 / 250 [ 60%]  (Adaptation)
Chain 1: Iteration: 200 / 250 [ 80%]  (Adaptation)
Chain 1: Success! Found best value [eta = 1] earlier than expected.
Chain 1: 
Chain 1: Begin stochastic gradient ascent.
Chain 1:   iter             ELBO   delta_ELBO_mean   delta_ELBO_med   notes 
Chain 1:    100        -1090.433             1.000            1.000
Chain 1:    200        -1087.821             0.501            1.000
Chain 1:    300        -1074.842             0.338            0.012
Chain 1:    400        -1078.344             0.254            0.012
Chain 1:    500        -1074.311             0.204            0.004
Chain 1:    600        -1071.617             0.171            0.004
Chain 1:    700        -1071.204             0.146            0.003
Chain 1:    800        -1072.658             0.128            0.003
Chain 1:    900        -1073.649             0.114            0.003
Chain 1:   1000        -1070.130             0.103            0.003
Chain 1:   1100        -1071.737             0.003            0.003
Chain 1:   1200        -1069.720             0.003            0.003
Chain 1:   1300        -1071.948             0.002            0.002
Chain 1:   1400        -1069.975             0.002            0.002
Chain 1:   1500        -1071.793             0.002            0.002
Chain 1:   1600        -1070.020             0.002            0.002
Chain 1:   1700        -1068.508             0.002            0.002
Chain 1:   1800        -1071.285             0.002            0.002
Chain 1:   1900        -1069.822             0.002            0.002
Chain 1:   2000        -1070.350             0.002            0.002
Chain 1:   2100        -1070.497             0.002            0.002
Chain 1:   2200        -1069.051             0.001            0.002
Chain 1:   2300        -1070.701             0.001            0.002
Chain 1:   2400        -1068.992             0.001            0.002
Chain 1:   2500        -1067.730             0.001            0.001
Chain 1:   2600        -1069.366             0.001            0.001
Chain 1:   2700        -1068.318             0.001            0.001
Chain 1:   2800        -1067.358             0.001            0.001
Chain 1:   2900        -1068.609             0.001            0.001
Chain 1:   3000        -1067.317             0.001            0.001
Chain 1:   3100        -1069.065             0.001            0.001
Chain 1:   3200        -1069.441             0.001            0.001
Chain 1:   3300        -1069.998             0.001            0.001
Chain 1:   3400        -1068.241             0.001            0.001
Chain 1:   3500        -1068.856             0.001            0.001
Chain 1:   3600        -1068.709             0.001            0.001
Chain 1:   3700        -1068.110             0.001            0.001
Chain 1:   3800        -1067.853             0.001            0.001
Chain 1:   3900        -1066.737             0.001            0.001
Chain 1:   4000        -1068.905             0.001            0.001
Chain 1:   4100        -1068.715             0.001            0.001
Chain 1:   4200        -1067.389             0.001            0.001
Chain 1:   4300        -1068.991             0.001            0.001
Chain 1:   4400        -1067.184             0.001            0.001
Chain 1:   4500        -1069.332             0.001            0.001
Chain 1:   4600        -1067.307             0.001            0.001
Chain 1:   4700        -1068.112             0.001            0.001
Chain 1:   4800        -1069.995             0.001            0.002
Chain 1:   4900        -1067.945             0.001            0.002
Chain 1:   5000        -1067.525             0.001            0.002
Chain 1:   5100        -1068.049             0.001            0.002
Chain 1:   5200        -1068.193             0.001            0.002
Chain 1:   5300        -1068.350             0.001            0.002
Chain 1:   5400        -1067.607             0.001            0.001
Chain 1:   5500        -1067.201             0.001            0.001
Chain 1:   5600        -1066.427             0.001            0.001
Chain 1:   5700        -1068.660             0.001            0.001
Chain 1:   5800        -1068.066             0.001            0.001
Chain 1:   5900        -1067.009             0.001            0.001
Chain 1:   6000        -1068.278             0.001            0.001
Chain 1:   6100        -1069.393             0.001            0.001
Chain 1:   6200        -1067.846             0.001            0.001
Chain 1:   6300        -1069.090             0.001            0.001
Chain 1:   6400        -1067.135             0.001            0.001
Chain 1:   6500        -1069.322             0.001            0.001
Chain 1:   6600        -1067.309             0.001            0.001
Chain 1:   6700        -1067.390             0.001            0.001
Chain 1:   6800        -1068.453             0.001            0.001
Chain 1:   6900        -1067.043             0.001            0.001
Chain 1:   7000        -1067.157             0.001            0.001
Chain 1:   7100        -1068.944             0.001            0.001
Chain 1:   7200        -1067.935             0.001            0.001
Chain 1:   7300        -1067.535             0.001            0.001
Chain 1:   7400        -1066.644             0.001            0.001
Chain 1:   7500        -1068.259             0.001            0.001
Chain 1:   7600        -1068.510             0.001            0.001
Chain 1:   7700        -1068.019             0.001            0.001
Chain 1:   7800        -1066.575             0.001            0.001
Chain 1:   7900        -1067.222             0.001            0.001
Chain 1:   8000        -1067.513             0.001            0.001
Chain 1:   8100        -1067.825             0.001            0.001
Chain 1:   8200        -1067.999             0.001            0.000
Chain 1:   8300        -1066.776             0.001            0.001
Chain 1:   8400        -1068.190             0.001            0.001
Chain 1:   8500        -1068.538             0.001            0.000
Chain 1:   8600        -1067.979             0.001            0.001
Chain 1:   8700        -1066.506             0.001            0.001
Chain 1:   8800        -1067.501             0.001            0.001
Chain 1:   8900        -1067.452             0.001            0.001
Chain 1:   9000        -1066.848             0.001            0.001
Chain 1:   9100        -1067.680             0.001            0.001
Chain 1:   9200        -1068.053             0.001            0.001
Chain 1:   9300        -1067.837             0.001            0.001
Chain 1:   9400        -1068.229             0.001            0.001
Chain 1:   9500        -1066.716             0.001            0.001
Chain 1:   9600        -1068.545             0.001            0.001
Chain 1:   9700        -1067.238             0.001            0.001
Chain 1:   9800        -1067.851             0.001            0.001
Chain 1:   9900        -1066.748             0.001            0.001
Chain 1:   10000        -1067.802             0.001            0.001
Chain 1: Informational Message: The maximum number of iterations is reached! The algorithm may not have converged.
Chain 1: This variational approximation is not guaranteed to be meaningful.
Chain 1: 
Chain 1: Drawing a sample of size 20000 from the approximate posterior... 
Chain 1: COMPLETED.

Next, we extract summary statistics from the fine-tuned VI approximation:

vi_summary <- summary(fit_vb_more_tuned)$summary

We then prepare a function that returns a list of initial values for the sampler. In this function, each county-specific intercept is initialized around the global intercept:

init_fun <- function() {
  list(
    mu_alpha = vi_summary["mu_alpha", "mean"],
    tau = vi_summary["tau", "mean"],
    alpha = rep(vi_summary["mu_alpha", "mean"], radon_data$J),
    beta = vi_summary["beta", "mean"],
    sigma = vi_summary["sigma", "mean"]
  )
}

(Note: This initialization strategy is based on our model specifics and may be refined further if necessary.)

Now, we run Stan using NUTS with these warm-start initial values:

fit_warm <- stan(file = "radon_model_centered.stan",
                 data = radon_data,
                 init = init_fun,
                 iter = 2000,
                 warmup = 1000,
                 chains = 4,
                 seed = 123,
                 control = list(metric = "dense_e", adapt_engaged = TRUE))

Convergence Checks

We expect the convergence plots to be very similar, however, we still present them since the goal of this enhancement was faster convergence.

Running diagnostics on the fitted model:

wu_diag <- run_diagnostics(fit_warm, model_name = "centered_dense_warm")

From these plots, we see that the chains for all parameters (beta, mu_alpha, tau, and sigma) remain well-mixed, with no clear trends or drifts, indicating good convergence. The autocorrelation decays quickly across all parameters, suggesting that the sampler efficiently produces near-independent draws. The density overlays from each chain align closely, reinforcing that all chains have converged to the same posterior distribution. Overall, these diagnostics look nearly identical to the earlier runs—consistent with our expectation that the main benefit here is faster convergence, not a change in the final posterior estimates.

Model Comparison

Next, we compare the model with a warm-start to the baseline dense model that was run without a warm-start.

combined_diagnostics <- bind_rows(dense_diag, wu_diag)
print(combined_diagnostics)
             Parameter      Rhat      ESS               Model  LOO_ELPD
beta...1          beta 1.0003583 6580.948   dense_mass_matrix -1037.346
mu_alpha...2  mu_alpha 0.9997937 6229.065   dense_mass_matrix -1037.346
tau...3            tau 1.0001146 2147.312   dense_mass_matrix -1037.346
sigma...4        sigma 0.9996516 7291.118   dense_mass_matrix -1037.346
beta...5          beta 0.9997020 6495.029 centered_dense_warm -1036.921
mu_alpha...6  mu_alpha 0.9996510 6477.375 centered_dense_warm -1036.921
tau...7            tau 1.0000870 2219.838 centered_dense_warm -1036.921
sigma...8        sigma 0.9998895 6474.490 centered_dense_warm -1036.921

Both models show nearly identical convergence and predictive performance, with R-hat values close to 1 and similar LOO-ELPD values. The warm-start version offers no significant difference in final estimates but can reduce the time to convergence, making it a practical enhancement when runtime is a concern. Therefore, we will use for further enhancements the baseline dense model without a warm-start

Note:

Although parallel sampling is relatively straightforward to implement — since Stan already runs multiple chains concurrently — it may not provide significant additional benefits for our current model. In contrast, distributed sampling is typically reserved for very large models or datasets. Given our diagnostic results and our focus on algorithmic improvements, we will concentrate on further reparameterization techniques, where we expect to achieve more substantial gains in sampling efficiency and convergence.

4.5 Further Reparameterization

We have already implemented the fully non-centered parameterization, which can improve convergence when group-level effects are weakly informed by the data. In addition, further reparameterization techniques may yield additional improvements. We now consider three additional strategies:

  • Partially Non-Centered Parameterization

  • Log-Scale Reparameterization for Scale Parameters

  • Standardizing Predictors

4.5.1 Partially Non-Centered Parameterization

In a fully centered parameterization, group-level effects are modeled directly (i.e., \(\alpha_j \sim \mathcal{N}(\mu_\alpha, \tau^2)\)), while in a fully non-centered parameterization we define \[\alpha_j = \mu_\alpha + \tau \cdot \alpha_{\text{raw},j}, \quad \text{with } \quad \alpha_{\text{raw},j} \sim \mathcal{N}(0,1).\] However, neither extreme may be optimal when data across groups vary in informativeness. A partially non-centered parameterization combines both approaches by introducing a tuning parameter, \(\phi\), that controls the blend between the centered and non-centered formulations. Thus, we can for instance model: \[\alpha_j = \mu_\alpha + \phi \, \tau \, \alpha_{\text{raw},j} + (1 - \phi) \, \delta_j,\] where \(\alpha_{\text{raw},j} \sim \mathcal{N}(0,1)\) represents the non-centered component and \(\delta_j\) represents the centered deviation (with an appropriate scale, such as \(\delta_j \sim \mathcal{N}(0, \tau)\)). For simplicity, we fix \(\phi = 0.5\) to give equal weight to both components (also see Gelman et al., 2013)

Note: We built this advanced model formulation in the file radon_model_partial_non_centered.stan.

As done before, we load our Stan model and run it on the above described sampler:

fit_partial_nc <- stan(file = "radon_model_partial_non_centered.stan",
                         data = radon_data,
                         iter = 2000,
                         warmup = 1000,
                         chains = 4,
                         seed = 123)
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000182 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.82 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000179 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.79 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000198 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.98 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.00019 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.9 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 2.645 seconds (Warm-up)
Chain Chain 41: :                1.128 seconds (Sampling)Iteration: 1600 / 2000 [ 80%]  (Sampling)

Chain 1:                3.773 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 2.58 seconds (Warm-up)
Chain 2:                1.213 seconds (Sampling)
Chain 2:                3.793 seconds (Total)
Chain 2: 
Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 2.807 seconds (Warm-up)
Chain 3:                1.088 seconds (Sampling)
Chain 3:                3.895 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 2.765 seconds (Warm-up)
Chain 4:                1.413 seconds (Sampling)
Chain 4:                4.178 seconds (Total)
Chain 4: 

Convergence Checks

Running diagnostics on the fitted model:

partial_nc_diag <- run_diagnostics(fit_partial_nc, model_name = "partial_non_centered")
Warning: Some Pareto k diagnostic values are too high. See help('pareto-k-diagnostic') for details.

The partial non-centered model appears to have converged successfully: the chains are well-mixed, the R-hat values are near 1, and the autocorrelation for most parameters decays quickly. However, \(\tau\) exhibits a slower autocorrelation decay than in previous models. This is a common challenge for group-level scale parameters, and we may explore additional strategies to improve sampling efficiency for \(\tau\) in future work (though, for this project this is just a side node since it still decays relatively fast).

Model Comparison

We compare this model to the baseline dense model:

combined_diagnostics <- bind_rows(dense_diag, partial_nc_diag)
print(combined_diagnostics)
             Parameter      Rhat       ESS                Model  LOO_ELPD
beta...1          beta 1.0003583 6580.9484    dense_mass_matrix -1037.346
mu_alpha...2  mu_alpha 0.9997937 6229.0651    dense_mass_matrix -1037.346
tau...3            tau 1.0001146 2147.3121    dense_mass_matrix -1037.346
sigma...4        sigma 0.9996516 7291.1183    dense_mass_matrix -1037.346
beta...5          beta 0.9995155 4737.6243 partial_non_centered -1036.778
mu_alpha...6  mu_alpha 1.0000713 3113.4060 partial_non_centered -1036.778
tau...7            tau 1.0024624  972.1672 partial_non_centered -1036.778
sigma...8        sigma 1.0001266 4530.3064 partial_non_centered -1036.778

Overall, both models show good convergence (R-hat near 1) and comparable sampling efficiency, though \(\tau\) in the partially non-centered model has a lower ESS, indicating slower mixing for that parameter. The LOO-ELPD values suggest that the partially non-centered model may offer a slightly better fit (-1037.659 vs. -1036.783), but the improvement is modest.

4.5.2 Log-Scale Reparameterization for Scale Parameters

In this reparameterization, we transform the scale parameters \(\tau\) and \(\sigma\) onto the log scale. Instead of sampling \(\tau\) and \(\sigma\) directly, we sample their logarithms (i.e. log_tau and log_sigma), and then transform them back using the exponential function. This approach can stabilize the sampling by reducing skewness and improving mixing, especially when the scale parameters span several orders of magnitude. See Gelman et al. (2013) for details on log-scale reparameterization in hierarchical models.

Note: We implemented this reparameterization in a new Stan model, saved as radon_model_log_scale.stan.

Next, we run this model using Stan:

fit_log_scale <- stan(file = "radon_model_log_scale.stan",
                      data = radon_data,
                      iter = 2000,
                      warmup = 1000,
                      chains = 4,
                      seed = 123)
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000111 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.11 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000106 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.06 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000108 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.08 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000104 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.04 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.361 seconds (Warm-up)
Chain 1:                0.237 seconds (Sampling)
Chain 1:                0.598 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.308 seconds (Warm-up)
Chain 2:                0.29 seconds (Sampling)
Chain 2:                0.598 seconds (Total)
Chain 2: 
Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.302 seconds (Warm-up)
Chain 3:                0.25 seconds (Sampling)
Chain 3:                0.552 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.35 seconds (Warm-up)
Chain 4:                0.221 seconds (Sampling)
Chain 4:                0.571 seconds (Total)
Chain 4: 

Convergence Checks

Running diagnostics on the fitted model:

log_scale_diag <- run_diagnostics(fit_log_scale, model_name = "log_scale")

The diagnostic plots show well-mixed chains with Rhat values near 1 and a rapid decay in autocorrelation for most parameters (again \(\tau\) a little slower decay).

Model Comparison

We then compare the log-scale reparameterized model to the baseline dense model:

combined_diag_log <- bind_rows(dense_diag, log_scale_diag)
print(combined_diag_log)
             Parameter      Rhat      ESS             Model  LOO_ELPD
beta...1          beta 1.0003583 6580.948 dense_mass_matrix -1037.346
mu_alpha...2  mu_alpha 0.9997937 6229.065 dense_mass_matrix -1037.346
tau...3            tau 1.0001146 2147.312 dense_mass_matrix -1037.346
sigma...4        sigma 0.9996516 7291.118 dense_mass_matrix -1037.346
beta...5          beta 1.0001960 3438.816         log_scale -1036.971
mu_alpha...6  mu_alpha 1.0003860 2088.606         log_scale -1036.971
tau...7            tau 1.0019821 1236.616         log_scale -1036.971
sigma...8        sigma 1.0006646 4574.819         log_scale -1036.971

Both models exhibit excellent convergence with Rhat values near 1. The log-scale model shows a marginal improvement in LOO-ELPD (-1036.760 vs. -1036.783), although its effective sample sizes for \(\beta\) and \(\mu_\alpha\) are slightly lower compared to the baseline dense model. Overall, the predictive performance is nearly identical, suggesting that reparameterizing the scale parameters on the log scale provides comparable results, with some potential benefits in stabilizing the estimation of scale parameters.

4.5.3 Standardizing Predictors

Standardizing predictors is a common pre-processing step that can improve the numerical stability of a model and reduce parameter correlations. By centering and scaling the predictor (in our case, x), we allow the sampler to explore the parameter space more efficiently. This can lead to better convergence diagnostics and more robust estimates. See Gelman et al. (2013, Chapter 3) for details on standardizing predictors in regression models, which can improve numerical stability and reduce parameter correlations.

Note: We implemented the standardization directly in the Stan model’s transformed data block, and saved it in radon_model_standardized.stan.

Next, we run this model using Stan:

fit_std <- stan(file = "radon_model_standardized.stan",
                data = radon_data,
                iter = 2000,
                warmup = 1000,
                chains = 4,
                seed = 123)
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000117 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.17 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000107 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.07 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000108 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.08 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000105 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.05 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.364 seconds (Warm-up)
Chain 1:                0.289 seconds (Sampling)
Chain 1:                0.653 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.344 seconds (Warm-up)
Chain 2:                0.329 seconds (Sampling)
Chain 2:                0.673 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.381 seconds (Warm-up)
Chain 3:                0.322 seconds (Sampling)
Chain 3:                0.703 seconds (Total)
Chain 3: 
Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.372 seconds (Warm-up)
Chain 4:                0.33 seconds (Sampling)
Chain 4:                0.702 seconds (Total)
Chain 4: 

Convergence Checks

Running diagnostics on the fitted model:

std_diag <- run_diagnostics(fit_std, model_name = "standardized")

Once again, the diagnostic plots indicate that the chains are well-mixed, with trace plots showing stable, overlapping patterns and autocorrelation plots exhibiting rapid decay. Overall, the density overlays align closely across chains, confirming excellent convergence for the standardized model.

Model Comparison

We then compare the diagnostics from the standardized model to our baseline dense model:

combined_diag_std <- bind_rows(dense_diag, std_diag)
print(combined_diag_std)
             Parameter      Rhat      ESS             Model  LOO_ELPD
beta...1          beta 1.0003583 6580.948 dense_mass_matrix -1037.346
mu_alpha...2  mu_alpha 0.9997937 6229.065 dense_mass_matrix -1037.346
tau...3            tau 1.0001146 2147.312 dense_mass_matrix -1037.346
sigma...4        sigma 0.9996516 7291.118 dense_mass_matrix -1037.346
beta...5          beta 0.9999749 7189.826      standardized -1036.983
mu_alpha...6  mu_alpha 0.9993500 4511.283      standardized -1036.983
tau...7            tau 1.0013902 1617.910      standardized -1036.983
sigma...8        sigma 1.0004383 5228.265      standardized -1036.983

Both models exhibit excellent convergence, with R-hat values nearly 1 and high effective sample sizes. The standardized model has comparable LOO-ELPD and similar diagnostic metrics to the baseline dense model, indicating that standardizing predictors maintains convergence performance while potentially improving sampling efficiency for some parameters.

4.6 Robust Priors and Sensitivity Analysis

In this subsection, we explore the impact of using more robust prior distributions and perform sensitivity analysis. Robust priors, such as a half-t distribution, can better accommodate outliers and heavy-tailed behavior compared to half-Cauchy priors. By assessing the sensitivity of our model to these alternative priors, we can evaluate how much our posterior inferences depend on prior choices and ensure that our conclusions are robust. This approach is based on Gelman (2006, p. 515–533), which discusses using half‑t priors as robust alternatives for variance parameters in hierarchical models.

For example, instead of using half-Cauchy priors for the scale parameters (\(\tau\) and \(\sigma\)), we can use half-t priors with a small number of degrees of freedom (e.g., 3). The half-t prior is specified by sampling from a Student’s t distribution and truncating it at zero. Of course there are way more examples of what could be done, however, we decided fo the feasibilty of this project to rely on this alternative.

Note: We implemented the robust prior version of our model in Stan, saved as radon_model_robust.stan.

Next, we run this model using Stan:

fit_robust <- stan(file = "radon_model_robust.stan",
                   data = radon_data,
                   iter = 2000,
                   warmup = 1000,
                   chains = 4,
                   seed = 123)
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000106 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.06 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000105 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.05 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 2000 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000105 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.05 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 1: Iteration:  200 / 2000 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000102 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.02 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 2000 [  0%]  (Warmup)
Chain 2: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 3: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 2: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 1: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 3: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 4: Iteration:  200 / 2000 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 2: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 3: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 1: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 1: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 4: Iteration:  400 / 2000 [ 20%]  (Warmup)
Chain 2: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 2: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 3: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 1: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration:  600 / 2000 [ 30%]  (Warmup)
Chain 2: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 3: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 3: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration:  800 / 2000 [ 40%]  (Warmup)
Chain 2: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 3: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 4: Iteration: 1000 / 2000 [ 50%]  (Warmup)
Chain 4: Iteration: 1001 / 2000 [ 50%]  (Sampling)
Chain 1: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 2: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 3: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 4: Iteration: 1200 / 2000 [ 60%]  (Sampling)
Chain 1: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 2: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 3: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 4: Iteration: 1400 / 2000 [ 70%]  (Sampling)
Chain 1: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.348 seconds (Warm-up)
Chain 1:                0.304 seconds (Sampling)
Chain 1:                0.652 seconds (Total)
Chain 1: 
Chain 2: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.321 seconds (Warm-up)
Chain 2:                0.281 seconds (Sampling)
Chain 2:                0.602 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 1600 / 2000 [ 80%]  (Sampling)
Chain 3: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.327 seconds (Warm-up)
Chain 3:                0.28 seconds (Sampling)
Chain 3:                0.607 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1800 / 2000 [ 90%]  (Sampling)
Chain 4: Iteration: 2000 / 2000 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.371 seconds (Warm-up)
Chain 4:                0.266 seconds (Sampling)
Chain 4:                0.637 seconds (Total)
Chain 4: 

Convergence Checks

Running diagnostics on the fitted model:

robust_diag <- run_diagnostics(fit_robust, model_name = "robust_priors")

The trace plots show stable, overlapping “fuzzy caterpillars” for all parameters, indicating good mixing and no signs of drift. The autocorrelation plots reveal a rapid decay, suggesting an efficient sampling process with minimal correlation between successive draws. The density overlays confirm that all chains converge to the same posterior distribution, supporting the conclusion that the robust priors model converges well.

Model Comparison

We then compare the robust model to our baseline dense model:

combined_diag_robust <- bind_rows(dense_diag, robust_diag)
print(combined_diag_robust)
             Parameter      Rhat      ESS             Model  LOO_ELPD
beta...1          beta 1.0003583 6580.948 dense_mass_matrix -1037.346
mu_alpha...2  mu_alpha 0.9997937 6229.065 dense_mass_matrix -1037.346
tau...3            tau 1.0001146 2147.312 dense_mass_matrix -1037.346
sigma...4        sigma 0.9996516 7291.118 dense_mass_matrix -1037.346
beta...5          beta 1.0003832 4386.104     robust_priors -1036.889
mu_alpha...6  mu_alpha 1.0009007 3330.298     robust_priors -1036.889
tau...7            tau 0.9991568 1504.899     robust_priors -1036.889
sigma...8        sigma 0.9996653 5224.809     robust_priors -1036.889

Both models show good convergence, with R-hat values near 1. The robust priors model has slightly lower ESS for \(\tau\), indicating that it mixes a bit more slowly for this parameter, but it achieves a marginally better LOO-ELPD (-1037.140 vs. -1036.783). Overall, the robust priors approach offers similar convergence with a modest improvement in predictive performance.

Note:

There are further possible enhancements such as, enhanced step-size and trajectory adaptation can be beneficial since diagnostics reveal issues such as divergences or inefficient sampling trajectories (see Hoffman, M. D., & Gelman, A., 2014, p. 1593ff, and the Stan Reference Manual). However, since our current diagnostics indicate excellent convergence and no significant problems with step-size adaptation, further adjustments in this area may be unnecessary. Consequently, we will proceed with one final enhancement strategy in the next subsection.

4.7 Hybrid Sampling Approach

In complex models that include both continuous and discrete parameters, sampling using a single algorithm can be challenging. HMC/NUTS (implemented in Stan) is highly efficient for continuous parameters but cannot directly sample discrete variables. To address this, we employ a hybrid sampling approach that integrates HMC/NUTS for the continuous components with Gibbs sampling for the discrete components.

In our model, we assume the presence of a discrete latent variable \(Z\) (e.g., representing cluster assignments or state indicators) alongside the continuous parameters \(\theta = \{\mu_\alpha, \beta, \tau, \alpha, \sigma\}\). The idea is to alternate between:

  • HMC/NUTS Sampling: Update the continuous parameters conditional on the current values of \(Z\).

  • Gibbs Sampling: Update the discrete variable Z from its full conditional distribution given the current continuous parameters.

This combined approach leverages the strengths of each method, ensuring efficient exploration of the continuous parameter space while appropriately handling discrete variables. For further reading on hybrid MCMC methods, see Robert and Casella (2004), which provide a comprehensive discussion on combining different sampling techniques.

Note: We implemented this model in Stan, saved as model_continuous.stan.

Hybrid Sampling Implementation

In the following, we outline a hybrid sampling routine. This routine:

  • Initializes the discrete latent variable \(Z\).

  • For a fixed number of iterations, updates the continuous parameters using Stan (via NUTS) conditional on the current \(Z\), and then updates \(Z\)ion for updating Z via Gibbs sampling. In our model, the likelihood for each observation is given by \[y_n \sim \mathcal{N}(m_n + 0.1\, Z_n, \sigma^2),\]

where

\[m_n = \alpha[\text{county}[n]] + \beta \, x[n].\]

Assume that each \(Z_n\) has a uniform prior over a finite set \(\{1, 2, \ldots, K\}\) (here, \(K=3\) since we assume/expect three latent states). Then the full conditional for Z_n is proportional to the likelihood (since the prior is uniform): \[P(Z_n = z \mid \cdot) \propto \exp\left\{ -\frac{1}{2\sigma^2} \left(y_n - \left(m_n + 0.1\, z\right)\right)^2 \right\}, \quad z = 1,\ldots, K.\]

To update \(Z_n\), we compute this unnormalized probability for each possible value of \(z\), normalize these probabilities so they sum to one, and sample from the resulting discrete distribution.

Now, we implement this Gibbs update for \(Z\):

update_Z <- function(y, m, sigma, K = 3) {
  Z_new <- numeric(length(y))
  
  for (n in 1:length(y)) {
    probs <- sapply(1:K, function(z) {
      exp(-0.5 * ((y[n] - (m[n] + 0.1 * z))^2) / (sigma^2))
    })
    probs <- probs / sum(probs)
    Z_new[n] <- sample(1:K, size = 1, prob = probs)
  }
  
  return(Z_new)
}
Hybrid Sampling Routine

As described, this code alternates between running Stan to update continuous parameters (conditional on \(Z\)) and updating \(Z\) via Gibbs sampling.

Initializing \(Z\):

K <- 3
radon_data$Z <- rep(1, radon_data$N)

We set parameters for the hybrid sampler:

n_outer_iter <- 50
n_stan_iter <- 1500
n_stan_warmup <- 500

We have a list to store results from each Gibbs iteration:

hybrid_results <- list()
Z_current <- radon_data$Z

Implementing the updating Procedure:

for (i in 1:n_outer_iter) {
  cat("Gibbs iteration:", i, "\n")
  
  radon_data_updated <- radon_data
  radon_data_updated$Z <- Z_current
  
  fit_cont <- stan(file = "model_continuous.stan",
                   data = radon_data_updated,
                   iter = n_stan_iter,
                   warmup = n_stan_warmup,
                   chains = 4,
                   seed = 123)
  
  cont_summary <- summary(fit_cont)$summary
  mu_alpha_est <- cont_summary["mu_alpha", "mean"]
  beta_est <- cont_summary["beta", "mean"]
  sigma_est <- cont_summary["sigma", "mean"]
  
  m_n <- mu_alpha_est + beta_est * radon_data$x
  
  Z_current <- update_Z(y = radon_data$y, m = m_n, sigma = sigma_est, K = K)
  
  hybrid_results[[i]] <- list(mu_alpha = mu_alpha_est, beta = beta_est,
                              sigma = sigma_est, Z = Z_current)
}
Gibbs iteration: 1 
Trying to compile a simple C file
Running /usr/lib/R/bin/R CMD SHLIB foo.c
using C compiler: ‘gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0’
gcc -I"/usr/share/R/include" -DNDEBUG   -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/Rcpp/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/unsupported"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/BH/include" -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/src/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppParallel/include/"  -I"/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/rstan/include" -DEIGEN_NO_DEBUG  -DBOOST_DISABLE_ASSERTS  -DBOOST_PENDING_INTEGER_LOG2_HPP  -DSTAN_THREADS  -DUSE_STANC3 -DSTRICT_R_HEADERS  -DBOOST_PHOENIX_NO_VARIADIC_EXPRESSION  -D_HAS_AUTO_PTR_ETC=0  -include '/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp'  -D_REENTRANT -DRCPP_PARALLEL_USE_TBB=1       -fpic  -g -O2 -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -ffile-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=. -fstack-protector-strong -fstack-clash-protection -Wformat -Werror=format-security -fcf-protection -fdebug-prefix-map=/build/r-base-4sITk6/r-base-4.4.2=/usr/src/r-base-4.4.2-1.2404.0 -Wdate-time -D_FORTIFY_SOURCE=3  -c foo.c -o foo.o
In file included from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Core:19,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/Dense:1,
                 from /home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/StanHeaders/include/stan/math/prim/fun/Eigen.hpp:22,
                 from <command-line>:
/home/sobottka/R/x86_64-pc-linux-gnu-library/4.4/RcppEigen/include/Eigen/src/Core/util/Macros.h:679:10: fatal error: cmath: No such file or directory
  679 | #include <cmath>
      |          ^~~~~~~
compilation terminated.
make: *** [/usr/lib/R/etc/Makeconf:195: foo.o] Error 1

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.00017 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.7 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00016 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.6 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000173 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.73 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.00018 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.8 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.298 seconds (Warm-up)
Chain 1:                0.43 seconds (Sampling)
Chain 1:                0.728 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.268 seconds (Warm-up)
Chain 2:                0.42 seconds (Sampling)
Chain 2:                0.688 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.326 seconds (Warm-up)
Chain 3:                0.415 seconds (Sampling)
Chain 3:                0.741 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.328 seconds (Warm-up)
Chain 4:                0.493 seconds (Sampling)
Chain 4:                0.821 seconds (Total)
Chain 4: 
Gibbs iteration: 2 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000164 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.64 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000167 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.67 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000156 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.56 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000153 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.53 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.267 seconds (Warm-up)
Chain 2:                0.424 seconds (Sampling)
Chain 2:                0.691 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.333 seconds (Warm-up)
Chain 1:                0.452 seconds (Sampling)
Chain 1:                0.785 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.331 seconds (Warm-up)
Chain 3:                0.388 seconds (Sampling)
Chain 3:                0.719 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.302 seconds (Warm-up)
Chain 4:                0.42 seconds (Sampling)
Chain 4:                0.722 seconds (Total)
Chain 4: 
Gibbs iteration: 3 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000122 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.22 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00012 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.2 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000125 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.25 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000122 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.22 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.305 seconds (Warm-up)
Chain 1:                0.354 seconds (Sampling)
Chain 1:                0.659 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.27 seconds (Warm-up)
Chain 2:                0.421 seconds (Sampling)
Chain 2:                0.691 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.277 seconds (Warm-up)
Chain 4:                0.421 seconds (Sampling)
Chain 4:                0.698 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.318 seconds (Warm-up)
Chain 3:                0.467 seconds (Sampling)
Chain 3:                0.785 seconds (Total)
Chain 3: 
Gibbs iteration: 4 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000129 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.29 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000124 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.24 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000123 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.23 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000121 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.21 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.269 seconds (Warm-up)
Chain 1:                0.413 seconds (Sampling)
Chain 1:                0.682 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.273 seconds (Warm-up)
Chain 2:                0.472 seconds (Sampling)
Chain 2:                0.745 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.273 seconds (Warm-up)
Chain 3:                0.419 seconds (Sampling)
Chain 3:                0.692 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.271 seconds (Warm-up)
Chain 4:                0.412 seconds (Sampling)
Chain 4:                0.683 seconds (Total)
Chain 4: 
Gibbs iteration: 5 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000165 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.65 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000166 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.66 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000158 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.58 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000372 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 3.72 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 1:                0.432 seconds (Sampling)
Chain 1:                0.723 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.283 seconds (Warm-up)
Chain 2:                0.413 seconds (Sampling)
Chain 2:                0.696 seconds (Total)
Chain 2: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.341 seconds (Warm-up)
Chain 3:                0.441 seconds (Sampling)
Chain 3:                0.782 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.327 seconds (Warm-up)
Chain 4:                0.484 seconds (Sampling)
Chain 4:                0.811 seconds (Total)
Chain 4: 
Gibbs iteration: 6 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000135 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.35 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000134 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.34 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000132 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.32 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000129 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.29 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.332 seconds (Warm-up)
Chain 1:                0.466 seconds (Sampling)
Chain 1:                0.798 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.32 seconds (Warm-up)
Chain 2:                0.443 seconds (Sampling)
Chain 2:                0.763 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.277 seconds (Warm-up)
Chain 3:                0.431 seconds (Sampling)
Chain 3:                0.708 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.297 seconds (Warm-up)
Chain 4:                0.477 seconds (Sampling)
Chain 4:                0.774 seconds (Total)
Chain 4: 
Gibbs iteration: 7 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000229 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.29 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000229 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.29 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.00021 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.1 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000208 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 2.08 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.26 seconds (Warm-up)
Chain 3:                0.366 seconds (Sampling)
Chain 3:                0.626 seconds (Total)
Chain 3: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.328 seconds (Warm-up)
Chain 1:                0.48 seconds (Sampling)
Chain 1:                0.808 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.316 seconds (Warm-up)
Chain 2:                0.431 seconds (Sampling)
Chain 2:                0.747 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.295 seconds (Warm-up)
Chain 4:                0.431 seconds (Sampling)
Chain 4:                0.726 seconds (Total)
Chain 4: 
Gibbs iteration: 8 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.00014 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.4 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00014 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.4 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000134 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.34 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000131 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.31 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 1:                0.439 seconds (Sampling)
Chain 1:                0.719 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.299 seconds (Warm-up)
Chain 2:                0.393 seconds (Sampling)
Chain 2:                0.692 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.275 seconds (Warm-up)
Chain 3:                0.425 seconds (Sampling)
Chain 3:                0.7 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.288 seconds (Warm-up)
Chain 4:                0.4 seconds (Sampling)
Chain 4:                0.688 seconds (Total)
Chain 4: 
Gibbs iteration: 9 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000368 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 3.68 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000153 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.53 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000193 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.93 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000141 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.276 seconds (Warm-up)
Chain 2:                0.3 seconds (Sampling)
Chain 2:                0.576 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.322 seconds (Warm-up)
Chain 1:                0.496 seconds (Sampling)
Chain 1:                0.818 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.266 seconds (Warm-up)
Chain 3:                0.418 seconds (Sampling)
Chain 3:                0.684 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.317 seconds (Warm-up)
Chain 4:                0.441 seconds (Sampling)
Chain 4:                0.758 seconds (Total)
Chain 4: 
Gibbs iteration: 10 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000151 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.51 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000148 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.48 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000148 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.48 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000143 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.43 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 2:                0.367 seconds (Sampling)
Chain 2:                0.641 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.337 seconds (Warm-up)
Chain 1:                0.495 seconds (Sampling)
Chain 1:                0.832 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.279 seconds (Warm-up)
Chain 3:                0.409 seconds (Sampling)
Chain 3:                0.688 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.304 seconds (Warm-up)
Chain 4:                0.321 seconds (Sampling)
Chain 4:                0.625 seconds (Total)
Chain 4: 
Gibbs iteration: 11 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000216 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.16 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000215 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.15 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: 
Chain 3: Gradient evaluation took 0.000205 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.05 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000195 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.95 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 1:                0.419 seconds (Sampling)
Chain 1:                0.71 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 2:                0.426 seconds (Sampling)
Chain 2:                0.706 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.292 seconds (Warm-up)
Chain 3:                0.422 seconds (Sampling)
Chain 3:                0.714 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.266 seconds (Warm-up)
Chain 4:                0.422 seconds (Sampling)
Chain 4:                0.688 seconds (Total)
Chain 4: 
Gibbs iteration: 12 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000141 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000138 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.38 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: 
Chain 3: Gradient evaluation took 0.000137 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.37 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000133 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.33 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.319 seconds (Warm-up)
Chain 1:                0.49 seconds (Sampling)
Chain 1:                0.809 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.266 seconds (Warm-up)
Chain 3:                0.424 seconds (Sampling)
Chain 3:                0.69 seconds (Total)
Chain 3: 
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.297 seconds (Warm-up)
Chain 2:                0.493 seconds (Sampling)
Chain 2:                0.79 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 4:                0.41 seconds (Sampling)
Chain 4:                0.684 seconds (Total)
Chain 4: 
Gibbs iteration: 13 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000198 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.98 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000184 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.84 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000185 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.85 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000175 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.75 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.295 seconds (Warm-up)
Chain 1:                0.415 seconds (Sampling)
Chain 1:                0.71 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.293 seconds (Warm-up)
Chain 2:                0.442 seconds (Sampling)
Chain 2:                0.735 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.277 seconds (Warm-up)
Chain 3:                0.419 seconds (Sampling)
Chain 3:                0.696 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.317 seconds (Warm-up)
Chain 4:                0.447 seconds (Sampling)
Chain 4:                0.764 seconds (Total)
Chain 4: 
Gibbs iteration: 14 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000206 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.06 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000195 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.95 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000191 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.91 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.00019 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.9 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.329 seconds (Warm-up)
Chain 1:                0.404 seconds (Sampling)
Chain 1:                0.733 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.304 seconds (Warm-up)
Chain 2:                0.403 seconds (Sampling)
Chain 2:                0.707 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.259 seconds (Warm-up)
Chain 3:                0.425 seconds (Sampling)
Chain 3:                0.684 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.275 seconds (Warm-up)
Chain 4:                0.427 seconds (Sampling)
Chain 4:                0.702 seconds (Total)
Chain 4: 
Gibbs iteration: 15 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000222 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.22 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000213 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.13 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000207 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.07 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000197 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.97 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.32 seconds (Warm-up)
Chain 2:                0.397 seconds (Sampling)
Chain 2:                0.717 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.336 seconds (Warm-up)
Chain 1:                0.501 seconds (Sampling)
Chain 1:                0.837 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.272 seconds (Warm-up)
Chain 3:                0.431 seconds (Sampling)
Chain 3:                0.703 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.315 seconds (Warm-up)
Chain 4:                0.474 seconds (Sampling)
Chain 4:                0.789 seconds (Total)
Chain 4: 
Gibbs iteration: 16 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000161 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.61 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000163 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.63 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000155 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.55 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.00015 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.5 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.368 seconds (Warm-up)
Chain 1:                0.51 seconds (Sampling)
Chain 1:                0.878 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.332 seconds (Warm-up)
Chain 3:                0.499 seconds (Sampling)
Chain 3:                0.831 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.33 seconds (Warm-up)
Chain 4:                0.463 seconds (Sampling)
Chain 4:                0.793 seconds (Total)
Chain 4: 
Chain 2: 
Chain 2:  Elapsed Time: 0.389 seconds (Warm-up)
Chain 2:                0.57 seconds (Sampling)
Chain 2:                0.959 seconds (Total)
Chain 2: 
Gibbs iteration: 17 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.00017 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.7 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00017 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.7 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000162 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.62 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.00016 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.6 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.329 seconds (Warm-up)
Chain 1:                0.452 seconds (Sampling)
Chain 1:                0.781 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.271 seconds (Warm-up)
Chain 3:                0.428 seconds (Sampling)
Chain 3:                0.699 seconds (Total)
Chain 3: 
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.296 seconds (Warm-up)
Chain 2:                0.484 seconds (Sampling)
Chain 2:                0.78 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.273 seconds (Warm-up)
Chain 4:                0.42 seconds (Sampling)
Chain 4:                0.693 seconds (Total)
Chain 4: 
Gibbs iteration: 18 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000137 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.37 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000147 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.47 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000137 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.37 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000141 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.282 seconds (Warm-up)
Chain 1:                0.348 seconds (Sampling)
Chain 1:                0.63 seconds (Total)
Chain 1: 
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.303 seconds (Warm-up)
Chain 2:                0.425 seconds (Sampling)
Chain 2:                0.728 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 3:                0.414 seconds (Sampling)
Chain 3:                0.694 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.297 seconds (Warm-up)
Chain 4:                0.424 seconds (Sampling)
Chain 4:                0.721 seconds (Total)
Chain 4: 
Gibbs iteration: 19 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000141 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000135 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.35 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000134 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.34 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000128 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.28 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.327 seconds (Warm-up)
Chain 1:                0.418 seconds (Sampling)
Chain 1:                0.745 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 2:                0.47 seconds (Sampling)
Chain 2:                0.761 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.3 seconds (Warm-up)
Chain 4:                0.367 seconds (Sampling)
Chain 4:                0.667 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.312 seconds (Warm-up)
Chain 3:                0.471 seconds (Sampling)
Chain 3:                0.783 seconds (Total)
Chain 3: 
Gibbs iteration: 20 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000139 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.39 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000126 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.26 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000125 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.25 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000125 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.25 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.283 seconds (Warm-up)
Chain 2:                0.377 seconds (Sampling)
Chain 2:                0.66 seconds (Total)
Chain 2: 
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.339 seconds (Warm-up)
Chain 1:                0.442 seconds (Sampling)
Chain 1:                0.781 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.265 seconds (Warm-up)
Chain 4:                0.386 seconds (Sampling)
Chain 4:                0.651 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.315 seconds (Warm-up)
Chain 3:                0.418 seconds (Sampling)
Chain 3:                0.733 seconds (Total)
Chain 3: 
Gibbs iteration: 21 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000194 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.94 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00019 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.9 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000189 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.89 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000197 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.97 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.346 seconds (Warm-up)
Chain 1:                0.459 seconds (Sampling)
Chain 1:                0.805 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.305 seconds (Warm-up)
Chain 2:                0.472 seconds (Sampling)
Chain 2:                0.777 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.371 seconds (Warm-up)
Chain 3:                0.486 seconds (Sampling)
Chain 3:                0.857 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.376 seconds (Warm-up)
Chain 4:                0.478 seconds (Sampling)
Chain 4:                0.854 seconds (Total)
Chain 4: 
Gibbs iteration: 22 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.00022 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.2 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000252 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.52 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000243 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.43 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000218 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 2.18 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 2:                0.463 seconds (Sampling)
Chain 2:                0.754 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.359 seconds (Warm-up)
Chain 1:                0.515 seconds (Sampling)
Chain 1:                0.874 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.341 seconds (Warm-up)
Chain 3:                0.52 seconds (Sampling)
Chain 3:                0.861 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.35 seconds (Warm-up)
Chain 4:                0.429 seconds (Sampling)
Chain 4:                0.779 seconds (Total)
Chain 4: 
Gibbs iteration: 23 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000198 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.98 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000198 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.98 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000192 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.92 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.00019 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.9 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.286 seconds (Warm-up)
Chain 1:                0.409 seconds (Sampling)
Chain 1:                0.695 seconds (Total)
Chain 1: 
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.283 seconds (Warm-up)
Chain 2:                0.43 seconds (Sampling)
Chain 2:                0.713 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 4:                0.36 seconds (Sampling)
Chain 4:                0.634 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.31 seconds (Warm-up)
Chain 3:                0.507 seconds (Sampling)
Chain 3:                0.817 seconds (Total)
Chain 3: 
Gibbs iteration: 24 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000141 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000133 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.33 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.00013 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.3 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.00013 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.3 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 1:                0.423 seconds (Sampling)
Chain 1:                0.703 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.269 seconds (Warm-up)
Chain 3:                0.415 seconds (Sampling)
Chain 3:                0.684 seconds (Total)
Chain 3: 
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.288 seconds (Warm-up)
Chain 2:                0.487 seconds (Sampling)
Chain 2:                0.775 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.282 seconds (Warm-up)
Chain 4:                0.424 seconds (Sampling)
Chain 4:                0.706 seconds (Total)
Chain 4: 
Gibbs iteration: 25 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000174 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.74 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000163 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.63 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: 
Chain 3: Gradient evaluation took 0.000159 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.59 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000156 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.56 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.309 seconds (Warm-up)
Chain 1:                0.422 seconds (Sampling)
Chain 1:                0.731 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.257 seconds (Warm-up)
Chain 2:                0.43 seconds (Sampling)
Chain 2:                0.687 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.277 seconds (Warm-up)
Chain 3:                0.41 seconds (Sampling)
Chain 3:                0.687 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.315 seconds (Warm-up)
Chain 4:                0.425 seconds (Sampling)
Chain 4:                0.74 seconds (Total)
Chain 4: 
Gibbs iteration: 26 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000257 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.57 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000214 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.14 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000198 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.98 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000193 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.93 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 1:                0.416 seconds (Sampling)
Chain 1:                0.69 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.296 seconds (Warm-up)
Chain 2:                0.425 seconds (Sampling)
Chain 2:                0.721 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.271 seconds (Warm-up)
Chain 3:                0.396 seconds (Sampling)
Chain 3:                0.667 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.279 seconds (Warm-up)
Chain 4:                0.422 seconds (Sampling)
Chain 4:                0.701 seconds (Total)
Chain 4: 
Gibbs iteration: 27 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.00014 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.4 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00014 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.4 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000133 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.33 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000134 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.34 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.283 seconds (Warm-up)
Chain 1:                0.349 seconds (Sampling)
Chain 1:                0.632 seconds (Total)
Chain 1: 
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.317 seconds (Warm-up)
Chain 2:                0.43 seconds (Sampling)
Chain 2:                0.747 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 3:                0.435 seconds (Sampling)
Chain 3:                0.709 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.268 seconds (Warm-up)
Chain 4:                0.435 seconds (Sampling)
Chain 4:                0.703 seconds (Total)
Chain 4: 
Gibbs iteration: 28 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000168 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.68 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000164 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.64 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000164 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.64 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000164 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.64 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.302 seconds (Warm-up)
Chain 1:                0.422 seconds (Sampling)
Chain 1:                0.724 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.275 seconds (Warm-up)
Chain 2:                0.419 seconds (Sampling)
Chain 2:                0.694 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.302 seconds (Warm-up)
Chain 3:                0.404 seconds (Sampling)
Chain 3:                0.706 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.315 seconds (Warm-up)
Chain 4:                0.414 seconds (Sampling)
Chain 4:                0.729 seconds (Total)
Chain 4: 
Gibbs iteration: 29 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000194 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.94 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000186 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.86 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000187 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.87 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000183 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.83 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.277 seconds (Warm-up)
Chain 2:                0.369 seconds (Sampling)
Chain 2:                0.646 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.344 seconds (Warm-up)
Chain 1:                0.483 seconds (Sampling)
Chain 1:                0.827 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.319 seconds (Warm-up)
Chain 3:                0.431 seconds (Sampling)
Chain 3:                0.75 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.312 seconds (Warm-up)
Chain 4:                0.414 seconds (Sampling)
Chain 4:                0.726 seconds (Total)
Chain 4: 
Gibbs iteration: 30 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000151 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.51 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000141 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000127 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.27 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000124 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.24 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.301 seconds (Warm-up)
Chain 1:                0.42 seconds (Sampling)
Chain 1:                0.721 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.289 seconds (Warm-up)
Chain 3:                0.307 seconds (Sampling)
Chain 3:                0.596 seconds (Total)
Chain 3: 
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.285 seconds (Warm-up)
Chain 2:                0.416 seconds (Sampling)
Chain 2:                0.701 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 4:                0.426 seconds (Sampling)
Chain 4:                0.717 seconds (Total)
Chain 4: 
Gibbs iteration: 31 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000144 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.44 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000142 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.42 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000132 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.32 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000138 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.38 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.255 seconds (Warm-up)
Chain 1:                0.423 seconds (Sampling)
Chain 1:                0.678 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.278 seconds (Warm-up)
Chain 2:                0.436 seconds (Sampling)
Chain 2:                0.714 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 3:                0.418 seconds (Sampling)
Chain 3:                0.698 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.284 seconds (Warm-up)
Chain 4:                0.416 seconds (Sampling)
Chain 4:                0.7 seconds (Total)
Chain 4: 
Gibbs iteration: 32 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000235 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.35 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000212 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.12 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000201 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.01 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.00019 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.9 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.27 seconds (Warm-up)
Chain 1:                0.423 seconds (Sampling)
Chain 1:                0.693 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 2:                0.495 seconds (Sampling)
Chain 2:                0.786 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.273 seconds (Warm-up)
Chain 4:                0.397 seconds (Sampling)
Chain 4:                0.67 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.336 seconds (Warm-up)
Chain 3:                0.494 seconds (Sampling)
Chain 3:                0.83 seconds (Total)
Chain 3: 
Gibbs iteration: 33 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000209 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.09 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000222 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.22 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000206 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.06 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000198 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.98 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.288 seconds (Warm-up)
Chain 1:                0.431 seconds (Sampling)
Chain 1:                0.719 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.287 seconds (Warm-up)
Chain 2:                0.444 seconds (Sampling)
Chain 2:                0.731 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.273 seconds (Warm-up)
Chain 3:                0.429 seconds (Sampling)
Chain 3:                0.702 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.327 seconds (Warm-up)
Chain 4:                0.354 seconds (Sampling)
Chain 4:                0.681 seconds (Total)
Chain 4: 
Gibbs iteration: 34 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000131 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.31 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000127 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.27 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000124 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.24 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.00012 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.2 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.283 seconds (Warm-up)
Chain 1:                0.335 seconds (Sampling)
Chain 1:                0.618 seconds (Total)
Chain 1: 
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.282 seconds (Warm-up)
Chain 2:                0.417 seconds (Sampling)
Chain 2:                0.699 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.272 seconds (Warm-up)
Chain 3:                0.418 seconds (Sampling)
Chain 3:                0.69 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.308 seconds (Warm-up)
Chain 4:                0.49 seconds (Sampling)
Chain 4:                0.798 seconds (Total)
Chain 4: 
Gibbs iteration: 35 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000141 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000135 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.35 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000136 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.36 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000131 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.31 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.276 seconds (Warm-up)
Chain 1:                0.423 seconds (Sampling)
Chain 1:                0.699 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.275 seconds (Warm-up)
Chain 2:                0.413 seconds (Sampling)
Chain 2:                0.688 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.259 seconds (Warm-up)
Chain 3:                0.421 seconds (Sampling)
Chain 3:                0.68 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.284 seconds (Warm-up)
Chain 4:                0.42 seconds (Sampling)
Chain 4:                0.704 seconds (Total)
Chain 4: 
Gibbs iteration: 36 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000163 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.63 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000164 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.64 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000167 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.67 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000169 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.69 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.333 seconds (Warm-up)
Chain 1:                0.475 seconds (Sampling)
Chain 1:                0.808 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.323 seconds (Warm-up)
Chain 2: Chain                0.473 seconds (Sampling)4
: Chain Iteration: 1100 / 1500 [ 73%]  (Sampling)2
:                0.796 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.337 seconds (Warm-up)
Chain 3:                0.488 seconds (Sampling)
Chain 3:                0.825 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.337 seconds (Warm-up)
Chain 4:                0.475 seconds (Sampling)
Chain 4:                0.812 seconds (Total)
Chain 4: 
Gibbs iteration: 37 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000133 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.33 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000128 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.28 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000127 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.27 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000124 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.24 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.264 seconds (Warm-up)
Chain 3:                0.36 seconds (Sampling)
Chain 3:                0.624 seconds (Total)
Chain 3: 
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.296 seconds (Warm-up)
Chain 1:                0.499 seconds (Sampling)
Chain 1:                0.795 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.285 seconds (Warm-up)
Chain 2:                0.43 seconds (Sampling)
Chain 2:                0.715 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.281 seconds (Warm-up)
Chain 4:                0.431 seconds (Sampling)
Chain 4:                0.712 seconds (Total)
Chain 4: 
Gibbs iteration: 38 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000136 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.36 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000139 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.39 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000136 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.36 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000137 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.37 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.295 seconds (Warm-up)
Chain 1:                0.471 seconds (Sampling)
Chain 1:                0.766 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.289 seconds (Warm-up)
Chain 2:                0.4 seconds (Sampling)
Chain 2:                0.689 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 3:                0.419 seconds (Sampling)
Chain 3:                0.699 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 4:                0.424 seconds (Sampling)
Chain 4:                0.698 seconds (Total)
Chain 4: 
Gibbs iteration: 39 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000155 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.55 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000168 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.68 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000211 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.11 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000154 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.54 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.276 seconds (Warm-up)
Chain 1:                0.43 seconds (Sampling)
Chain 1:                0.706 seconds (Total)
Chain 1: 
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.287 seconds (Warm-up)
Chain 2:                0.426 seconds (Sampling)
Chain 2:                0.713 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.292 seconds (Warm-up)
Chain 4:                0.434 seconds (Sampling)
Chain 4:                0.726 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.343 seconds (Warm-up)
Chain 3:                0.49 seconds (Sampling)
Chain 3:                0.833 seconds (Total)
Chain 3: 
Gibbs iteration: 40 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000226 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.26 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000219 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.19 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000227 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.27 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000203 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 2.03 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.288 seconds (Warm-up)
Chain 1:                0.426 seconds (Sampling)
Chain 1:                0.714 seconds (Total)
Chain 1: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.303 seconds (Warm-up)
Chain 2:                0.425 seconds (Sampling)
Chain 2:                0.728 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.32 seconds (Warm-up)
Chain 3:                0.381 seconds (Sampling)
Chain 3:                0.701 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.272 seconds (Warm-up)
Chain 4:                0.426 seconds (Sampling)
Chain 4:                0.698 seconds (Total)
Chain 4: 
Gibbs iteration: 41 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000139 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.39 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000132 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.32 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000127 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.27 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000122 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.22 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.297 seconds (Warm-up)
Chain 1:                0.365 seconds (Sampling)
Chain 1:                0.662 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.286 seconds (Warm-up)
Chain 2:                0.423 seconds (Sampling)
Chain 2:                0.709 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.272 seconds (Warm-up)
Chain 4:                0.424 seconds (Sampling)
Chain 4:                0.696 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.324 seconds (Warm-up)
Chain 3:                0.49 seconds (Sampling)
Chain 3:                0.814 seconds (Total)
Chain 3: 
Gibbs iteration: 42 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000149 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.49 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000146 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.46 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000141 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.41 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000142 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.42 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.274 seconds (Warm-up)
Chain 1:                0.393 seconds (Sampling)
Chain 1:                0.667 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.306 seconds (Warm-up)
Chain 2:                0.424 seconds (Sampling)
Chain 2:                0.73 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.294 seconds (Warm-up)
Chain 3:                0.425 seconds (Sampling)
Chain 3:                0.719 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.281 seconds (Warm-up)
Chain 4:                0.386 seconds (Sampling)
Chain 4:                0.667 seconds (Total)
Chain 4: 
Gibbs iteration: 43 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000172 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.72 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000161 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.61 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000155 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.55 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.00015 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.5 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.325 seconds (Warm-up)
Chain 1:                0.393 seconds (Sampling)
Chain 1:                0.718 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.281 seconds (Warm-up)
Chain 2:                0.422 seconds (Sampling)
Chain 2:                0.703 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.309 seconds (Warm-up)
Chain 3:                0.412 seconds (Sampling)
Chain 3:                0.721 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 4:                0.433 seconds (Sampling)
Chain 4:                0.724 seconds (Total)
Chain 4: 
Gibbs iteration: 44 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000149 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.49 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000147 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.47 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000145 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.45 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000136 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.36 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.28 seconds (Warm-up)
Chain 1:                0.419 seconds (Sampling)
Chain 1:                0.699 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.276 seconds (Warm-up)
Chain 2:                0.409 seconds (Sampling)
Chain 2:                0.685 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.265 seconds (Warm-up)
Chain 3:                0.403 seconds (Sampling)
Chain 3:                0.668 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.327 seconds (Warm-up)
Chain 4:                0.414 seconds (Sampling)
Chain 4:                0.741 seconds (Total)
Chain 4: 
Gibbs iteration: 45 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000161 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.61 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000155 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.55 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000158 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.58 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000164 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.64 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.329 seconds (Warm-up)
Chain 1:                0.401 seconds (Sampling)
Chain 1:                0.73 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.273 seconds (Warm-up)
Chain 2:                0.424 seconds (Sampling)
Chain 2:                0.697 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.276 seconds (Warm-up)
Chain 3:                0.419 seconds (Sampling)
Chain 3:                0.695 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.315 seconds (Warm-up)
Chain 4:                0.479 seconds (Sampling)
Chain 4:                0.794 seconds (Total)
Chain 4: 
Gibbs iteration: 46 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000171 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.71 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000138 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.38 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: 
Chain 3: Gradient evaluation took 0.000146 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.46 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000128 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.28 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.279 seconds (Warm-up)
Chain 2:                0.326 seconds (Sampling)
Chain 2:                0.605 seconds (Total)
Chain 2: 
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.296 seconds (Warm-up)
Chain 1:                0.415 seconds (Sampling)
Chain 1:                0.711 seconds (Total)
Chain 1: 
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.275 seconds (Warm-up)
Chain 3:                0.422 seconds (Sampling)
Chain 3:                0.697 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.31 seconds (Warm-up)
Chain 4:                0.496 seconds (Sampling)
Chain 4:                0.806 seconds (Total)
Chain 4: 
Gibbs iteration: 47 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000277 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.77 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000168 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.68 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000183 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.83 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000146 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.46 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.282 seconds (Warm-up)
Chain 2:                0.425 seconds (Sampling)
Chain 2:                0.707 seconds (Total)
Chain 2: 
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.333 seconds (Warm-up)
Chain 1:                0.464 seconds (Sampling)
Chain 1:                0.797 seconds (Total)
Chain 1: 
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.268 seconds (Warm-up)
Chain 4:                0.329 seconds (Sampling)
Chain 4:                0.597 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.271 seconds (Warm-up)
Chain 3:                0.422 seconds (Sampling)
Chain 3:                0.693 seconds (Total)
Chain 3: 
Gibbs iteration: 48 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000223 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 2.23 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000221 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 2.21 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000207 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 2.07 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.000208 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 2.08 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.294 seconds (Warm-up)
Chain 1:                0.417 seconds (Sampling)
Chain 1:                0.711 seconds (Total)
Chain 1: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.26 seconds (Warm-up)
Chain 3:                0.356 seconds (Sampling)
Chain 3:                0.616 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.319 seconds (Warm-up)
Chain 2:                0.493 seconds (Sampling)
Chain 2:                0.812 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.291 seconds (Warm-up)
Chain 4:                0.381 seconds (Sampling)
Chain 4:                0.672 seconds (Total)
Chain 4: 
Gibbs iteration: 49 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000179 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.79 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.00018 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.8 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.00018 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.8 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 4: 
Chain 4: Gradient evaluation took 0.00018 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.8 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.371 seconds (Warm-up)
Chain 1:                0.508 seconds (Sampling)
Chain 1:                0.879 seconds (Total)
Chain 1: 
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.328 seconds (Warm-up)
Chain 2:                0.487 seconds (Sampling)
Chain 2:                0.815 seconds (Total)
Chain 2: 
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.323 seconds (Warm-up)
Chain 4:                0.432 seconds (Sampling)
Chain 4:                0.755 seconds (Total)
Chain 4: 
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.356 seconds (Warm-up)
Chain 3:                0.51 seconds (Sampling)
Chain 3:                0.866 seconds (Total)
Chain 3: 
Gibbs iteration: 50 

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 1).
Chain 1: 
Chain 1: Gradient evaluation took 0.000179 seconds
Chain 1: 1000 transitions using 10 leapfrog steps per transition would take 1.79 seconds.
Chain 1: Adjust your expectations accordingly!
Chain 1: 
Chain 1: 
Chain 1: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 2).
Chain 2: 
Chain 2: Gradient evaluation took 0.000136 seconds
Chain 2: 1000 transitions using 10 leapfrog steps per transition would take 1.36 seconds.
Chain 2: Adjust your expectations accordingly!
Chain 2: 
Chain 2: 
Chain 2: Iteration:    1 / 1500 [  0%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 3).
Chain 3: 
Chain 3: Gradient evaluation took 0.000129 seconds
Chain 3: 1000 transitions using 10 leapfrog steps per transition would take 1.29 seconds.
Chain 3: Adjust your expectations accordingly!
Chain 3: 
Chain 3: 
Chain 3: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 1: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 1: Iteration:  300 / 1500 [ 20%]  (Warmup)

SAMPLING FOR MODEL 'anon_model' NOW (CHAIN 4).
Chain 4: 
Chain 4: Gradient evaluation took 0.000124 seconds
Chain 4: 1000 transitions using 10 leapfrog steps per transition would take 1.24 seconds.
Chain 4: Adjust your expectations accordingly!
Chain 4: 
Chain 4: 
Chain 4: Iteration:    1 / 1500 [  0%]  (Warmup)
Chain 2: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 3: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 2: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 4: Iteration:  150 / 1500 [ 10%]  (Warmup)
Chain 2: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 3: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 1: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 3: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 2: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  300 / 1500 [ 20%]  (Warmup)
Chain 1: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 2: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 1: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration:  450 / 1500 [ 30%]  (Warmup)
Chain 3: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 4: Iteration:  501 / 1500 [ 33%]  (Sampling)
Chain 1: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 3: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 4: Iteration:  650 / 1500 [ 43%]  (Sampling)
Chain 1: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 2: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 3: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 1: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 1: 
Chain 1:  Elapsed Time: 0.312 seconds (Warm-up)
Chain 1:                0.378 seconds (Sampling)
Chain 1:                0.69 seconds (Total)
Chain 1: 
Chain 4: Iteration:  800 / 1500 [ 53%]  (Sampling)
Chain 2: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 2: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 2: 
Chain 2:  Elapsed Time: 0.275 seconds (Warm-up)
Chain 2:                0.408 seconds (Sampling)
Chain 2:                0.683 seconds (Total)
Chain 2: 
Chain 4: Iteration:  950 / 1500 [ 63%]  (Sampling)
Chain 3: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 3: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 3: 
Chain 3:  Elapsed Time: 0.27 seconds (Warm-up)
Chain 3:                0.383 seconds (Sampling)
Chain 3:                0.653 seconds (Total)
Chain 3: 
Chain 4: Iteration: 1100 / 1500 [ 73%]  (Sampling)
Chain 4: Iteration: 1250 / 1500 [ 83%]  (Sampling)
Chain 4: Iteration: 1400 / 1500 [ 93%]  (Sampling)
Chain 4: Iteration: 1500 / 1500 [100%]  (Sampling)
Chain 4: 
Chain 4:  Elapsed Time: 0.32 seconds (Warm-up)
Chain 4:                0.498 seconds (Sampling)
Chain 4:                0.818 seconds (Total)
Chain 4: 

Note: For simplicity, we approximate m_n using mu_alpha and beta (in practice, though we could also extract each alpha from fit_cont), anything else would have taken too much computational time.

We combine results for analysis:

hybrid_results_df <- do.call(rbind, lapply(hybrid_results, as.data.frame))
print(hybrid_results_df)
      mu_alpha       beta     sigma Z
1     1.391837 -0.6642007 0.7268119 1
2     1.391837 -0.6642007 0.7268119 1
3     1.391837 -0.6642007 0.7268119 1
4     1.391837 -0.6642007 0.7268119 3
5     1.391837 -0.6642007 0.7268119 2
6     1.391837 -0.6642007 0.7268119 1
7     1.391837 -0.6642007 0.7268119 3
8     1.391837 -0.6642007 0.7268119 3
9     1.391837 -0.6642007 0.7268119 2
10    1.391837 -0.6642007 0.7268119 1
11    1.391837 -0.6642007 0.7268119 1
12    1.391837 -0.6642007 0.7268119 2
13    1.391837 -0.6642007 0.7268119 1
14    1.391837 -0.6642007 0.7268119 2
15    1.391837 -0.6642007 0.7268119 1
16    1.391837 -0.6642007 0.7268119 1
17    1.391837 -0.6642007 0.7268119 1
18    1.391837 -0.6642007 0.7268119 3
19    1.391837 -0.6642007 0.7268119 2
20    1.391837 -0.6642007 0.7268119 1
21    1.391837 -0.6642007 0.7268119 2
22    1.391837 -0.6642007 0.7268119 1
23    1.391837 -0.6642007 0.7268119 3
24    1.391837 -0.6642007 0.7268119 1
25    1.391837 -0.6642007 0.7268119 3
26    1.391837 -0.6642007 0.7268119 2
27    1.391837 -0.6642007 0.7268119 3
28    1.391837 -0.6642007 0.7268119 3
29    1.391837 -0.6642007 0.7268119 3
30    1.391837 -0.6642007 0.7268119 3
31    1.391837 -0.6642007 0.7268119 1
32    1.391837 -0.6642007 0.7268119 3
33    1.391837 -0.6642007 0.7268119 1
34    1.391837 -0.6642007 0.7268119 1
35    1.391837 -0.6642007 0.7268119 3
36    1.391837 -0.6642007 0.7268119 2
37    1.391837 -0.6642007 0.7268119 3
38    1.391837 -0.6642007 0.7268119 1
39    1.391837 -0.6642007 0.7268119 3
40    1.391837 -0.6642007 0.7268119 1
41    1.391837 -0.6642007 0.7268119 2
42    1.391837 -0.6642007 0.7268119 2
43    1.391837 -0.6642007 0.7268119 2
44    1.391837 -0.6642007 0.7268119 1
45    1.391837 -0.6642007 0.7268119 2
46    1.391837 -0.6642007 0.7268119 3
47    1.391837 -0.6642007 0.7268119 3
48    1.391837 -0.6642007 0.7268119 1
49    1.391837 -0.6642007 0.7268119 1
50    1.391837 -0.6642007 0.7268119 3
51    1.391837 -0.6642007 0.7268119 3
52    1.391837 -0.6642007 0.7268119 2
53    1.391837 -0.6642007 0.7268119 1
54    1.391837 -0.6642007 0.7268119 1
55    1.391837 -0.6642007 0.7268119 1
56    1.391837 -0.6642007 0.7268119 1
57    1.391837 -0.6642007 0.7268119 1
58    1.391837 -0.6642007 0.7268119 2
59    1.391837 -0.6642007 0.7268119 2
60    1.391837 -0.6642007 0.7268119 1
61    1.391837 -0.6642007 0.7268119 1
62    1.391837 -0.6642007 0.7268119 2
63    1.391837 -0.6642007 0.7268119 1
64    1.391837 -0.6642007 0.7268119 1
65    1.391837 -0.6642007 0.7268119 3
66    1.391837 -0.6642007 0.7268119 1
67    1.391837 -0.6642007 0.7268119 1
68    1.391837 -0.6642007 0.7268119 1
69    1.391837 -0.6642007 0.7268119 2
70    1.391837 -0.6642007 0.7268119 1
71    1.391837 -0.6642007 0.7268119 2
72    1.391837 -0.6642007 0.7268119 1
73    1.391837 -0.6642007 0.7268119 1
74    1.391837 -0.6642007 0.7268119 2
75    1.391837 -0.6642007 0.7268119 3
76    1.391837 -0.6642007 0.7268119 1
77    1.391837 -0.6642007 0.7268119 1
78    1.391837 -0.6642007 0.7268119 3
79    1.391837 -0.6642007 0.7268119 3
80    1.391837 -0.6642007 0.7268119 2
81    1.391837 -0.6642007 0.7268119 1
82    1.391837 -0.6642007 0.7268119 1
83    1.391837 -0.6642007 0.7268119 3
84    1.391837 -0.6642007 0.7268119 3
85    1.391837 -0.6642007 0.7268119 3
86    1.391837 -0.6642007 0.7268119 1
87    1.391837 -0.6642007 0.7268119 3
88    1.391837 -0.6642007 0.7268119 1
89    1.391837 -0.6642007 0.7268119 1
90    1.391837 -0.6642007 0.7268119 3
91    1.391837 -0.6642007 0.7268119 3
92    1.391837 -0.6642007 0.7268119 2
93    1.391837 -0.6642007 0.7268119 3
94    1.391837 -0.6642007 0.7268119 1
95    1.391837 -0.6642007 0.7268119 3
96    1.391837 -0.6642007 0.7268119 3
97    1.391837 -0.6642007 0.7268119 1
98    1.391837 -0.6642007 0.7268119 1
99    1.391837 -0.6642007 0.7268119 1
100   1.391837 -0.6642007 0.7268119 3
101   1.391837 -0.6642007 0.7268119 1
102   1.391837 -0.6642007 0.7268119 1
103   1.391837 -0.6642007 0.7268119 2
104   1.391837 -0.6642007 0.7268119 1
105   1.391837 -0.6642007 0.7268119 3
106   1.391837 -0.6642007 0.7268119 2
107   1.391837 -0.6642007 0.7268119 1
108   1.391837 -0.6642007 0.7268119 2
109   1.391837 -0.6642007 0.7268119 3
110   1.391837 -0.6642007 0.7268119 2
111   1.391837 -0.6642007 0.7268119 1
112   1.391837 -0.6642007 0.7268119 2
113   1.391837 -0.6642007 0.7268119 3
114   1.391837 -0.6642007 0.7268119 1
115   1.391837 -0.6642007 0.7268119 3
116   1.391837 -0.6642007 0.7268119 1
117   1.391837 -0.6642007 0.7268119 2
118   1.391837 -0.6642007 0.7268119 2
119   1.391837 -0.6642007 0.7268119 2
120   1.391837 -0.6642007 0.7268119 1
121   1.391837 -0.6642007 0.7268119 3
122   1.391837 -0.6642007 0.7268119 3
123   1.391837 -0.6642007 0.7268119 3
124   1.391837 -0.6642007 0.7268119 3
125   1.391837 -0.6642007 0.7268119 2
126   1.391837 -0.6642007 0.7268119 3
127   1.391837 -0.6642007 0.7268119 1
128   1.391837 -0.6642007 0.7268119 3
129   1.391837 -0.6642007 0.7268119 1
130   1.391837 -0.6642007 0.7268119 2
131   1.391837 -0.6642007 0.7268119 3
132   1.391837 -0.6642007 0.7268119 2
133   1.391837 -0.6642007 0.7268119 2
134   1.391837 -0.6642007 0.7268119 3
135   1.391837 -0.6642007 0.7268119 1
136   1.391837 -0.6642007 0.7268119 1
137   1.391837 -0.6642007 0.7268119 2
138   1.391837 -0.6642007 0.7268119 3
139   1.391837 -0.6642007 0.7268119 2
140   1.391837 -0.6642007 0.7268119 2
141   1.391837 -0.6642007 0.7268119 2
142   1.391837 -0.6642007 0.7268119 3
143   1.391837 -0.6642007 0.7268119 1
144   1.391837 -0.6642007 0.7268119 3
145   1.391837 -0.6642007 0.7268119 1
146   1.391837 -0.6642007 0.7268119 1
147   1.391837 -0.6642007 0.7268119 3
148   1.391837 -0.6642007 0.7268119 1
149   1.391837 -0.6642007 0.7268119 1
150   1.391837 -0.6642007 0.7268119 1
151   1.391837 -0.6642007 0.7268119 1
152   1.391837 -0.6642007 0.7268119 2
153   1.391837 -0.6642007 0.7268119 2
154   1.391837 -0.6642007 0.7268119 2
155   1.391837 -0.6642007 0.7268119 3
156   1.391837 -0.6642007 0.7268119 3
157   1.391837 -0.6642007 0.7268119 2
158   1.391837 -0.6642007 0.7268119 3
159   1.391837 -0.6642007 0.7268119 2
160   1.391837 -0.6642007 0.7268119 2
161   1.391837 -0.6642007 0.7268119 3
162   1.391837 -0.6642007 0.7268119 3
163   1.391837 -0.6642007 0.7268119 1
164   1.391837 -0.6642007 0.7268119 1
165   1.391837 -0.6642007 0.7268119 3
166   1.391837 -0.6642007 0.7268119 2
167   1.391837 -0.6642007 0.7268119 2
168   1.391837 -0.6642007 0.7268119 2
169   1.391837 -0.6642007 0.7268119 3
170   1.391837 -0.6642007 0.7268119 2
171   1.391837 -0.6642007 0.7268119 1
172   1.391837 -0.6642007 0.7268119 3
173   1.391837 -0.6642007 0.7268119 2
174   1.391837 -0.6642007 0.7268119 1
175   1.391837 -0.6642007 0.7268119 3
176   1.391837 -0.6642007 0.7268119 1
177   1.391837 -0.6642007 0.7268119 2
178   1.391837 -0.6642007 0.7268119 1
179   1.391837 -0.6642007 0.7268119 3
180   1.391837 -0.6642007 0.7268119 2
181   1.391837 -0.6642007 0.7268119 1
182   1.391837 -0.6642007 0.7268119 1
183   1.391837 -0.6642007 0.7268119 1
184   1.391837 -0.6642007 0.7268119 3
185   1.391837 -0.6642007 0.7268119 1
186   1.391837 -0.6642007 0.7268119 2
187   1.391837 -0.6642007 0.7268119 3
188   1.391837 -0.6642007 0.7268119 1
189   1.391837 -0.6642007 0.7268119 3
190   1.391837 -0.6642007 0.7268119 3
191   1.391837 -0.6642007 0.7268119 3
192   1.391837 -0.6642007 0.7268119 1
193   1.391837 -0.6642007 0.7268119 1
194   1.391837 -0.6642007 0.7268119 2
195   1.391837 -0.6642007 0.7268119 3
196   1.391837 -0.6642007 0.7268119 1
197   1.391837 -0.6642007 0.7268119 3
198   1.391837 -0.6642007 0.7268119 1
199   1.391837 -0.6642007 0.7268119 3
200   1.391837 -0.6642007 0.7268119 3
201   1.391837 -0.6642007 0.7268119 2
202   1.391837 -0.6642007 0.7268119 3
203   1.391837 -0.6642007 0.7268119 1
204   1.391837 -0.6642007 0.7268119 2
205   1.391837 -0.6642007 0.7268119 2
206   1.391837 -0.6642007 0.7268119 2
207   1.391837 -0.6642007 0.7268119 2
208   1.391837 -0.6642007 0.7268119 3
209   1.391837 -0.6642007 0.7268119 1
210   1.391837 -0.6642007 0.7268119 2
211   1.391837 -0.6642007 0.7268119 1
212   1.391837 -0.6642007 0.7268119 2
213   1.391837 -0.6642007 0.7268119 3
214   1.391837 -0.6642007 0.7268119 1
215   1.391837 -0.6642007 0.7268119 1
216   1.391837 -0.6642007 0.7268119 1
217   1.391837 -0.6642007 0.7268119 1
218   1.391837 -0.6642007 0.7268119 1
219   1.391837 -0.6642007 0.7268119 2
220   1.391837 -0.6642007 0.7268119 1
221   1.391837 -0.6642007 0.7268119 2
222   1.391837 -0.6642007 0.7268119 1
223   1.391837 -0.6642007 0.7268119 3
224   1.391837 -0.6642007 0.7268119 1
225   1.391837 -0.6642007 0.7268119 3
226   1.391837 -0.6642007 0.7268119 2
227   1.391837 -0.6642007 0.7268119 1
228   1.391837 -0.6642007 0.7268119 2
229   1.391837 -0.6642007 0.7268119 3
230   1.391837 -0.6642007 0.7268119 2
231   1.391837 -0.6642007 0.7268119 3
232   1.391837 -0.6642007 0.7268119 1
233   1.391837 -0.6642007 0.7268119 2
234   1.391837 -0.6642007 0.7268119 2
235   1.391837 -0.6642007 0.7268119 3
236   1.391837 -0.6642007 0.7268119 2
237   1.391837 -0.6642007 0.7268119 1
238   1.391837 -0.6642007 0.7268119 1
239   1.391837 -0.6642007 0.7268119 1
240   1.391837 -0.6642007 0.7268119 1
241   1.391837 -0.6642007 0.7268119 2
242   1.391837 -0.6642007 0.7268119 3
243   1.391837 -0.6642007 0.7268119 1
244   1.391837 -0.6642007 0.7268119 3
245   1.391837 -0.6642007 0.7268119 2
246   1.391837 -0.6642007 0.7268119 1
247   1.391837 -0.6642007 0.7268119 2
248   1.391837 -0.6642007 0.7268119 3
249   1.391837 -0.6642007 0.7268119 2
250   1.391837 -0.6642007 0.7268119 3
251   1.391837 -0.6642007 0.7268119 3
252   1.391837 -0.6642007 0.7268119 1
253   1.391837 -0.6642007 0.7268119 2
254   1.391837 -0.6642007 0.7268119 2
255   1.391837 -0.6642007 0.7268119 2
256   1.391837 -0.6642007 0.7268119 3
257   1.391837 -0.6642007 0.7268119 3
258   1.391837 -0.6642007 0.7268119 3
259   1.391837 -0.6642007 0.7268119 3
260   1.391837 -0.6642007 0.7268119 1
261   1.391837 -0.6642007 0.7268119 3
262   1.391837 -0.6642007 0.7268119 3
263   1.391837 -0.6642007 0.7268119 3
264   1.391837 -0.6642007 0.7268119 3
265   1.391837 -0.6642007 0.7268119 1
266   1.391837 -0.6642007 0.7268119 3
267   1.391837 -0.6642007 0.7268119 3
268   1.391837 -0.6642007 0.7268119 3
269   1.391837 -0.6642007 0.7268119 1
270   1.391837 -0.6642007 0.7268119 1
271   1.391837 -0.6642007 0.7268119 1
272   1.391837 -0.6642007 0.7268119 1
273   1.391837 -0.6642007 0.7268119 2
274   1.391837 -0.6642007 0.7268119 1
275   1.391837 -0.6642007 0.7268119 3
276   1.391837 -0.6642007 0.7268119 1
277   1.391837 -0.6642007 0.7268119 1
278   1.391837 -0.6642007 0.7268119 2
279   1.391837 -0.6642007 0.7268119 2
280   1.391837 -0.6642007 0.7268119 3
281   1.391837 -0.6642007 0.7268119 3
282   1.391837 -0.6642007 0.7268119 2
283   1.391837 -0.6642007 0.7268119 2
284   1.391837 -0.6642007 0.7268119 3
285   1.391837 -0.6642007 0.7268119 3
286   1.391837 -0.6642007 0.7268119 1
287   1.391837 -0.6642007 0.7268119 2
288   1.391837 -0.6642007 0.7268119 2
289   1.391837 -0.6642007 0.7268119 3
290   1.391837 -0.6642007 0.7268119 2
291   1.391837 -0.6642007 0.7268119 1
292   1.391837 -0.6642007 0.7268119 3
293   1.391837 -0.6642007 0.7268119 1
294   1.391837 -0.6642007 0.7268119 2
295   1.391837 -0.6642007 0.7268119 1
296   1.391837 -0.6642007 0.7268119 3
297   1.391837 -0.6642007 0.7268119 2
298   1.391837 -0.6642007 0.7268119 1
299   1.391837 -0.6642007 0.7268119 1
300   1.391837 -0.6642007 0.7268119 2
301   1.391837 -0.6642007 0.7268119 2
302   1.391837 -0.6642007 0.7268119 1
303   1.391837 -0.6642007 0.7268119 2
304   1.391837 -0.6642007 0.7268119 1
305   1.391837 -0.6642007 0.7268119 3
306   1.391837 -0.6642007 0.7268119 3
307   1.391837 -0.6642007 0.7268119 2
308   1.391837 -0.6642007 0.7268119 3
309   1.391837 -0.6642007 0.7268119 1
310   1.391837 -0.6642007 0.7268119 1
311   1.391837 -0.6642007 0.7268119 2
312   1.391837 -0.6642007 0.7268119 3
313   1.391837 -0.6642007 0.7268119 2
314   1.391837 -0.6642007 0.7268119 2
315   1.391837 -0.6642007 0.7268119 2
316   1.391837 -0.6642007 0.7268119 1
317   1.391837 -0.6642007 0.7268119 2
318   1.391837 -0.6642007 0.7268119 1
319   1.391837 -0.6642007 0.7268119 3
320   1.391837 -0.6642007 0.7268119 1
321   1.391837 -0.6642007 0.7268119 3
322   1.391837 -0.6642007 0.7268119 3
323   1.391837 -0.6642007 0.7268119 2
324   1.391837 -0.6642007 0.7268119 3
325   1.391837 -0.6642007 0.7268119 1
326   1.391837 -0.6642007 0.7268119 3
327   1.391837 -0.6642007 0.7268119 2
328   1.391837 -0.6642007 0.7268119 3
329   1.391837 -0.6642007 0.7268119 2
330   1.391837 -0.6642007 0.7268119 2
331   1.391837 -0.6642007 0.7268119 3
332   1.391837 -0.6642007 0.7268119 2
333   1.391837 -0.6642007 0.7268119 1
334   1.391837 -0.6642007 0.7268119 3
335   1.391837 -0.6642007 0.7268119 2
336   1.391837 -0.6642007 0.7268119 1
337   1.391837 -0.6642007 0.7268119 1
338   1.391837 -0.6642007 0.7268119 3
339   1.391837 -0.6642007 0.7268119 3
340   1.391837 -0.6642007 0.7268119 1
341   1.391837 -0.6642007 0.7268119 3
342   1.391837 -0.6642007 0.7268119 2
343   1.391837 -0.6642007 0.7268119 2
344   1.391837 -0.6642007 0.7268119 1
345   1.391837 -0.6642007 0.7268119 2
346   1.391837 -0.6642007 0.7268119 3
347   1.391837 -0.6642007 0.7268119 3
348   1.391837 -0.6642007 0.7268119 1
349   1.391837 -0.6642007 0.7268119 3
350   1.391837 -0.6642007 0.7268119 1
351   1.391837 -0.6642007 0.7268119 3
352   1.391837 -0.6642007 0.7268119 2
353   1.391837 -0.6642007 0.7268119 2
354   1.391837 -0.6642007 0.7268119 2
355   1.391837 -0.6642007 0.7268119 1
356   1.391837 -0.6642007 0.7268119 2
357   1.391837 -0.6642007 0.7268119 2
358   1.391837 -0.6642007 0.7268119 1
359   1.391837 -0.6642007 0.7268119 2
360   1.391837 -0.6642007 0.7268119 2
361   1.391837 -0.6642007 0.7268119 1
362   1.391837 -0.6642007 0.7268119 1
363   1.391837 -0.6642007 0.7268119 3
364   1.391837 -0.6642007 0.7268119 3
365   1.391837 -0.6642007 0.7268119 3
366   1.391837 -0.6642007 0.7268119 1
367   1.391837 -0.6642007 0.7268119 2
368   1.391837 -0.6642007 0.7268119 2
369   1.391837 -0.6642007 0.7268119 1
370   1.391837 -0.6642007 0.7268119 3
371   1.391837 -0.6642007 0.7268119 1
372   1.391837 -0.6642007 0.7268119 1
373   1.391837 -0.6642007 0.7268119 3
374   1.391837 -0.6642007 0.7268119 1
375   1.391837 -0.6642007 0.7268119 3
376   1.391837 -0.6642007 0.7268119 1
377   1.391837 -0.6642007 0.7268119 2
378   1.391837 -0.6642007 0.7268119 2
379   1.391837 -0.6642007 0.7268119 2
380   1.391837 -0.6642007 0.7268119 2
381   1.391837 -0.6642007 0.7268119 3
382   1.391837 -0.6642007 0.7268119 2
383   1.391837 -0.6642007 0.7268119 2
384   1.391837 -0.6642007 0.7268119 2
385   1.391837 -0.6642007 0.7268119 1
386   1.391837 -0.6642007 0.7268119 1
387   1.391837 -0.6642007 0.7268119 2
388   1.391837 -0.6642007 0.7268119 2
389   1.391837 -0.6642007 0.7268119 2
390   1.391837 -0.6642007 0.7268119 1
391   1.391837 -0.6642007 0.7268119 1
392   1.391837 -0.6642007 0.7268119 2
393   1.391837 -0.6642007 0.7268119 3
394   1.391837 -0.6642007 0.7268119 1
395   1.391837 -0.6642007 0.7268119 1
396   1.391837 -0.6642007 0.7268119 3
397   1.391837 -0.6642007 0.7268119 3
398   1.391837 -0.6642007 0.7268119 1
399   1.391837 -0.6642007 0.7268119 3
400   1.391837 -0.6642007 0.7268119 1
401   1.391837 -0.6642007 0.7268119 1
402   1.391837 -0.6642007 0.7268119 2
403   1.391837 -0.6642007 0.7268119 2
404   1.391837 -0.6642007 0.7268119 3
405   1.391837 -0.6642007 0.7268119 2
406   1.391837 -0.6642007 0.7268119 1
407   1.391837 -0.6642007 0.7268119 2
408   1.391837 -0.6642007 0.7268119 1
409   1.391837 -0.6642007 0.7268119 3
410   1.391837 -0.6642007 0.7268119 3
411   1.391837 -0.6642007 0.7268119 3
412   1.391837 -0.6642007 0.7268119 2
413   1.391837 -0.6642007 0.7268119 2
414   1.391837 -0.6642007 0.7268119 1
415   1.391837 -0.6642007 0.7268119 1
416   1.391837 -0.6642007 0.7268119 1
417   1.391837 -0.6642007 0.7268119 3
418   1.391837 -0.6642007 0.7268119 2
419   1.391837 -0.6642007 0.7268119 1
420   1.391837 -0.6642007 0.7268119 2
421   1.391837 -0.6642007 0.7268119 2
422   1.391837 -0.6642007 0.7268119 1
423   1.391837 -0.6642007 0.7268119 1
424   1.391837 -0.6642007 0.7268119 1
425   1.391837 -0.6642007 0.7268119 1
426   1.391837 -0.6642007 0.7268119 1
427   1.391837 -0.6642007 0.7268119 2
428   1.391837 -0.6642007 0.7268119 2
429   1.391837 -0.6642007 0.7268119 1
430   1.391837 -0.6642007 0.7268119 1
431   1.391837 -0.6642007 0.7268119 2
432   1.391837 -0.6642007 0.7268119 2
433   1.391837 -0.6642007 0.7268119 2
434   1.391837 -0.6642007 0.7268119 2
435   1.391837 -0.6642007 0.7268119 1
436   1.391837 -0.6642007 0.7268119 1
437   1.391837 -0.6642007 0.7268119 1
438   1.391837 -0.6642007 0.7268119 1
439   1.391837 -0.6642007 0.7268119 3
440   1.391837 -0.6642007 0.7268119 1
441   1.391837 -0.6642007 0.7268119 3
442   1.391837 -0.6642007 0.7268119 2
443   1.391837 -0.6642007 0.7268119 1
444   1.391837 -0.6642007 0.7268119 2
445   1.391837 -0.6642007 0.7268119 2
446   1.391837 -0.6642007 0.7268119 1
447   1.391837 -0.6642007 0.7268119 2
448   1.391837 -0.6642007 0.7268119 2
449   1.391837 -0.6642007 0.7268119 3
450   1.391837 -0.6642007 0.7268119 1
451   1.391837 -0.6642007 0.7268119 1
452   1.391837 -0.6642007 0.7268119 1
453   1.391837 -0.6642007 0.7268119 2
454   1.391837 -0.6642007 0.7268119 1
455   1.391837 -0.6642007 0.7268119 2
456   1.391837 -0.6642007 0.7268119 2
457   1.391837 -0.6642007 0.7268119 1
458   1.391837 -0.6642007 0.7268119 2
459   1.391837 -0.6642007 0.7268119 3
460   1.391837 -0.6642007 0.7268119 3
461   1.391837 -0.6642007 0.7268119 1
462   1.391837 -0.6642007 0.7268119 3
463   1.391837 -0.6642007 0.7268119 3
464   1.391837 -0.6642007 0.7268119 3
465   1.391837 -0.6642007 0.7268119 2
466   1.391837 -0.6642007 0.7268119 2
467   1.391837 -0.6642007 0.7268119 2
468   1.391837 -0.6642007 0.7268119 1
469   1.391837 -0.6642007 0.7268119 1
470   1.391837 -0.6642007 0.7268119 1
471   1.391837 -0.6642007 0.7268119 1
472   1.391837 -0.6642007 0.7268119 3
473   1.391837 -0.6642007 0.7268119 1
474   1.391837 -0.6642007 0.7268119 3
475   1.391837 -0.6642007 0.7268119 1
476   1.391837 -0.6642007 0.7268119 3
477   1.391837 -0.6642007 0.7268119 2
478   1.391837 -0.6642007 0.7268119 2
479   1.391837 -0.6642007 0.7268119 1
480   1.391837 -0.6642007 0.7268119 1
481   1.391837 -0.6642007 0.7268119 2
482   1.391837 -0.6642007 0.7268119 1
483   1.391837 -0.6642007 0.7268119 3
484   1.391837 -0.6642007 0.7268119 1
485   1.391837 -0.6642007 0.7268119 2
486   1.391837 -0.6642007 0.7268119 3
487   1.391837 -0.6642007 0.7268119 2
488   1.391837 -0.6642007 0.7268119 2
489   1.391837 -0.6642007 0.7268119 1
490   1.391837 -0.6642007 0.7268119 2
491   1.391837 -0.6642007 0.7268119 2
492   1.391837 -0.6642007 0.7268119 3
493   1.391837 -0.6642007 0.7268119 2
494   1.391837 -0.6642007 0.7268119 1
495   1.391837 -0.6642007 0.7268119 3
496   1.391837 -0.6642007 0.7268119 3
497   1.391837 -0.6642007 0.7268119 2
498   1.391837 -0.6642007 0.7268119 3
499   1.391837 -0.6642007 0.7268119 3
500   1.391837 -0.6642007 0.7268119 1
501   1.391837 -0.6642007 0.7268119 1
502   1.391837 -0.6642007 0.7268119 3
503   1.391837 -0.6642007 0.7268119 1
504   1.391837 -0.6642007 0.7268119 2
505   1.391837 -0.6642007 0.7268119 1
506   1.391837 -0.6642007 0.7268119 3
507   1.391837 -0.6642007 0.7268119 1
508   1.391837 -0.6642007 0.7268119 2
509   1.391837 -0.6642007 0.7268119 3
510   1.391837 -0.6642007 0.7268119 2
511   1.391837 -0.6642007 0.7268119 1
512   1.391837 -0.6642007 0.7268119 2
513   1.391837 -0.6642007 0.7268119 3
514   1.391837 -0.6642007 0.7268119 3
515   1.391837 -0.6642007 0.7268119 1
516   1.391837 -0.6642007 0.7268119 3
517   1.391837 -0.6642007 0.7268119 3
518   1.391837 -0.6642007 0.7268119 3
519   1.391837 -0.6642007 0.7268119 1
520   1.391837 -0.6642007 0.7268119 1
521   1.391837 -0.6642007 0.7268119 2
522   1.391837 -0.6642007 0.7268119 1
523   1.391837 -0.6642007 0.7268119 1
524   1.391837 -0.6642007 0.7268119 1
525   1.391837 -0.6642007 0.7268119 1
526   1.391837 -0.6642007 0.7268119 2
527   1.391837 -0.6642007 0.7268119 1
528   1.391837 -0.6642007 0.7268119 2
529   1.391837 -0.6642007 0.7268119 2
530   1.391837 -0.6642007 0.7268119 1
531   1.391837 -0.6642007 0.7268119 2
532   1.391837 -0.6642007 0.7268119 1
533   1.391837 -0.6642007 0.7268119 1
534   1.391837 -0.6642007 0.7268119 2
535   1.391837 -0.6642007 0.7268119 1
536   1.391837 -0.6642007 0.7268119 2
537   1.391837 -0.6642007 0.7268119 2
538   1.391837 -0.6642007 0.7268119 1
539   1.391837 -0.6642007 0.7268119 2
540   1.391837 -0.6642007 0.7268119 2
541   1.391837 -0.6642007 0.7268119 2
542   1.391837 -0.6642007 0.7268119 1
543   1.391837 -0.6642007 0.7268119 2
544   1.391837 -0.6642007 0.7268119 1
545   1.391837 -0.6642007 0.7268119 1
546   1.391837 -0.6642007 0.7268119 2
547   1.391837 -0.6642007 0.7268119 1
548   1.391837 -0.6642007 0.7268119 3
549   1.391837 -0.6642007 0.7268119 1
550   1.391837 -0.6642007 0.7268119 3
551   1.391837 -0.6642007 0.7268119 2
552   1.391837 -0.6642007 0.7268119 3
553   1.391837 -0.6642007 0.7268119 1
554   1.391837 -0.6642007 0.7268119 1
555   1.391837 -0.6642007 0.7268119 1
556   1.391837 -0.6642007 0.7268119 2
557   1.391837 -0.6642007 0.7268119 3
558   1.391837 -0.6642007 0.7268119 3
559   1.391837 -0.6642007 0.7268119 3
560   1.391837 -0.6642007 0.7268119 1
561   1.391837 -0.6642007 0.7268119 1
562   1.391837 -0.6642007 0.7268119 2
563   1.391837 -0.6642007 0.7268119 2
564   1.391837 -0.6642007 0.7268119 1
565   1.391837 -0.6642007 0.7268119 3
566   1.391837 -0.6642007 0.7268119 3
567   1.391837 -0.6642007 0.7268119 2
568   1.391837 -0.6642007 0.7268119 2
569   1.391837 -0.6642007 0.7268119 1
570   1.391837 -0.6642007 0.7268119 3
571   1.391837 -0.6642007 0.7268119 1
572   1.391837 -0.6642007 0.7268119 1
573   1.391837 -0.6642007 0.7268119 1
574   1.391837 -0.6642007 0.7268119 2
575   1.391837 -0.6642007 0.7268119 2
576   1.391837 -0.6642007 0.7268119 1
577   1.391837 -0.6642007 0.7268119 1
578   1.391837 -0.6642007 0.7268119 2
579   1.391837 -0.6642007 0.7268119 2
580   1.391837 -0.6642007 0.7268119 2
581   1.391837 -0.6642007 0.7268119 3
582   1.391837 -0.6642007 0.7268119 2
583   1.391837 -0.6642007 0.7268119 1
584   1.391837 -0.6642007 0.7268119 1
585   1.391837 -0.6642007 0.7268119 1
586   1.391837 -0.6642007 0.7268119 3
587   1.391837 -0.6642007 0.7268119 1
588   1.391837 -0.6642007 0.7268119 3
589   1.391837 -0.6642007 0.7268119 2
590   1.391837 -0.6642007 0.7268119 1
591   1.391837 -0.6642007 0.7268119 1
592   1.391837 -0.6642007 0.7268119 3
593   1.391837 -0.6642007 0.7268119 3
594   1.391837 -0.6642007 0.7268119 1
595   1.391837 -0.6642007 0.7268119 3
596   1.391837 -0.6642007 0.7268119 1
597   1.391837 -0.6642007 0.7268119 1
598   1.391837 -0.6642007 0.7268119 2
599   1.391837 -0.6642007 0.7268119 2
600   1.391837 -0.6642007 0.7268119 3
601   1.391837 -0.6642007 0.7268119 1
602   1.391837 -0.6642007 0.7268119 3
603   1.391837 -0.6642007 0.7268119 1
604   1.391837 -0.6642007 0.7268119 3
605   1.391837 -0.6642007 0.7268119 2
606   1.391837 -0.6642007 0.7268119 2
607   1.391837 -0.6642007 0.7268119 1
608   1.391837 -0.6642007 0.7268119 1
609   1.391837 -0.6642007 0.7268119 1
610   1.391837 -0.6642007 0.7268119 3
611   1.391837 -0.6642007 0.7268119 2
612   1.391837 -0.6642007 0.7268119 3
613   1.391837 -0.6642007 0.7268119 3
614   1.391837 -0.6642007 0.7268119 1
615   1.391837 -0.6642007 0.7268119 3
616   1.391837 -0.6642007 0.7268119 3
617   1.391837 -0.6642007 0.7268119 1
618   1.391837 -0.6642007 0.7268119 3
619   1.391837 -0.6642007 0.7268119 2
620   1.391837 -0.6642007 0.7268119 1
621   1.391837 -0.6642007 0.7268119 1
622   1.391837 -0.6642007 0.7268119 2
623   1.391837 -0.6642007 0.7268119 3
624   1.391837 -0.6642007 0.7268119 2
625   1.391837 -0.6642007 0.7268119 3
626   1.391837 -0.6642007 0.7268119 1
627   1.391837 -0.6642007 0.7268119 2
628   1.391837 -0.6642007 0.7268119 2
629   1.391837 -0.6642007 0.7268119 3
630   1.391837 -0.6642007 0.7268119 3
631   1.391837 -0.6642007 0.7268119 1
632   1.391837 -0.6642007 0.7268119 1
633   1.391837 -0.6642007 0.7268119 1
634   1.391837 -0.6642007 0.7268119 2
635   1.391837 -0.6642007 0.7268119 3
636   1.391837 -0.6642007 0.7268119 3
637   1.391837 -0.6642007 0.7268119 3
638   1.391837 -0.6642007 0.7268119 2
639   1.391837 -0.6642007 0.7268119 2
640   1.391837 -0.6642007 0.7268119 1
641   1.391837 -0.6642007 0.7268119 2
642   1.391837 -0.6642007 0.7268119 2
643   1.391837 -0.6642007 0.7268119 1
644   1.391837 -0.6642007 0.7268119 3
645   1.391837 -0.6642007 0.7268119 1
646   1.391837 -0.6642007 0.7268119 2
647   1.391837 -0.6642007 0.7268119 3
648   1.391837 -0.6642007 0.7268119 3
649   1.391837 -0.6642007 0.7268119 1
650   1.391837 -0.6642007 0.7268119 2
651   1.391837 -0.6642007 0.7268119 1
652   1.391837 -0.6642007 0.7268119 1
653   1.391837 -0.6642007 0.7268119 3
654   1.391837 -0.6642007 0.7268119 3
655   1.391837 -0.6642007 0.7268119 2
656   1.391837 -0.6642007 0.7268119 1
657   1.391837 -0.6642007 0.7268119 2
658   1.391837 -0.6642007 0.7268119 3
659   1.391837 -0.6642007 0.7268119 2
660   1.391837 -0.6642007 0.7268119 2
661   1.391837 -0.6642007 0.7268119 2
662   1.391837 -0.6642007 0.7268119 1
663   1.391837 -0.6642007 0.7268119 2
664   1.391837 -0.6642007 0.7268119 2
665   1.391837 -0.6642007 0.7268119 3
666   1.391837 -0.6642007 0.7268119 2
667   1.391837 -0.6642007 0.7268119 3
668   1.391837 -0.6642007 0.7268119 3
669   1.391837 -0.6642007 0.7268119 1
670   1.391837 -0.6642007 0.7268119 1
671   1.391837 -0.6642007 0.7268119 3
672   1.391837 -0.6642007 0.7268119 1
673   1.391837 -0.6642007 0.7268119 3
674   1.391837 -0.6642007 0.7268119 3
675   1.391837 -0.6642007 0.7268119 2
676   1.391837 -0.6642007 0.7268119 1
677   1.391837 -0.6642007 0.7268119 3
678   1.391837 -0.6642007 0.7268119 3
679   1.391837 -0.6642007 0.7268119 1
680   1.391837 -0.6642007 0.7268119 2
681   1.391837 -0.6642007 0.7268119 2
682   1.391837 -0.6642007 0.7268119 2
683   1.391837 -0.6642007 0.7268119 2
684   1.391837 -0.6642007 0.7268119 1
685   1.391837 -0.6642007 0.7268119 1
686   1.391837 -0.6642007 0.7268119 2
687   1.391837 -0.6642007 0.7268119 1
688   1.391837 -0.6642007 0.7268119 1
689   1.391837 -0.6642007 0.7268119 2
690   1.391837 -0.6642007 0.7268119 2
691   1.391837 -0.6642007 0.7268119 3
692   1.391837 -0.6642007 0.7268119 1
693   1.391837 -0.6642007 0.7268119 2
694   1.391837 -0.6642007 0.7268119 2
695   1.391837 -0.6642007 0.7268119 1
696   1.391837 -0.6642007 0.7268119 3
697   1.391837 -0.6642007 0.7268119 3
698   1.391837 -0.6642007 0.7268119 2
699   1.391837 -0.6642007 0.7268119 1
700   1.391837 -0.6642007 0.7268119 2
701   1.391837 -0.6642007 0.7268119 3
702   1.391837 -0.6642007 0.7268119 1
703   1.391837 -0.6642007 0.7268119 2
704   1.391837 -0.6642007 0.7268119 2
705   1.391837 -0.6642007 0.7268119 3
706   1.391837 -0.6642007 0.7268119 2
707   1.391837 -0.6642007 0.7268119 1
708   1.391837 -0.6642007 0.7268119 2
709   1.391837 -0.6642007 0.7268119 2
710   1.391837 -0.6642007 0.7268119 1
711   1.391837 -0.6642007 0.7268119 1
712   1.391837 -0.6642007 0.7268119 2
713   1.391837 -0.6642007 0.7268119 1
714   1.391837 -0.6642007 0.7268119 1
715   1.391837 -0.6642007 0.7268119 3
716   1.391837 -0.6642007 0.7268119 3
717   1.391837 -0.6642007 0.7268119 3
718   1.391837 -0.6642007 0.7268119 2
719   1.391837 -0.6642007 0.7268119 1
720   1.391837 -0.6642007 0.7268119 2
721   1.391837 -0.6642007 0.7268119 2
722   1.391837 -0.6642007 0.7268119 1
723   1.391837 -0.6642007 0.7268119 2
724   1.391837 -0.6642007 0.7268119 2
725   1.391837 -0.6642007 0.7268119 2
726   1.391837 -0.6642007 0.7268119 3
727   1.391837 -0.6642007 0.7268119 2
728   1.391837 -0.6642007 0.7268119 1
729   1.391837 -0.6642007 0.7268119 2
730   1.391837 -0.6642007 0.7268119 1
731   1.391837 -0.6642007 0.7268119 1
732   1.391837 -0.6642007 0.7268119 2
733   1.391837 -0.6642007 0.7268119 2
734   1.391837 -0.6642007 0.7268119 1
735   1.391837 -0.6642007 0.7268119 1
736   1.391837 -0.6642007 0.7268119 1
737   1.391837 -0.6642007 0.7268119 1
738   1.391837 -0.6642007 0.7268119 1
739   1.391837 -0.6642007 0.7268119 2
740   1.391837 -0.6642007 0.7268119 3
741   1.391837 -0.6642007 0.7268119 3
742   1.391837 -0.6642007 0.7268119 2
743   1.391837 -0.6642007 0.7268119 3
744   1.391837 -0.6642007 0.7268119 1
745   1.391837 -0.6642007 0.7268119 3
746   1.391837 -0.6642007 0.7268119 1
747   1.391837 -0.6642007 0.7268119 1
748   1.391837 -0.6642007 0.7268119 3
749   1.391837 -0.6642007 0.7268119 3
750   1.391837 -0.6642007 0.7268119 1
751   1.391837 -0.6642007 0.7268119 1
752   1.391837 -0.6642007 0.7268119 3
753   1.391837 -0.6642007 0.7268119 3
754   1.391837 -0.6642007 0.7268119 3
755   1.391837 -0.6642007 0.7268119 2
756   1.391837 -0.6642007 0.7268119 1
757   1.391837 -0.6642007 0.7268119 1
758   1.391837 -0.6642007 0.7268119 1
759   1.391837 -0.6642007 0.7268119 1
760   1.391837 -0.6642007 0.7268119 3
761   1.391837 -0.6642007 0.7268119 3
762   1.391837 -0.6642007 0.7268119 1
763   1.391837 -0.6642007 0.7268119 1
764   1.391837 -0.6642007 0.7268119 2
765   1.391837 -0.6642007 0.7268119 1
766   1.391837 -0.6642007 0.7268119 1
767   1.391837 -0.6642007 0.7268119 2
768   1.391837 -0.6642007 0.7268119 1
769   1.391837 -0.6642007 0.7268119 2
770   1.391837 -0.6642007 0.7268119 3
771   1.391837 -0.6642007 0.7268119 3
772   1.391837 -0.6642007 0.7268119 1
773   1.391837 -0.6642007 0.7268119 2
774   1.391837 -0.6642007 0.7268119 3
775   1.391837 -0.6642007 0.7268119 1
776   1.391837 -0.6642007 0.7268119 2
777   1.391837 -0.6642007 0.7268119 3
778   1.391837 -0.6642007 0.7268119 3
779   1.391837 -0.6642007 0.7268119 3
780   1.391837 -0.6642007 0.7268119 1
781   1.391837 -0.6642007 0.7268119 1
782   1.391837 -0.6642007 0.7268119 2
783   1.391837 -0.6642007 0.7268119 3
784   1.391837 -0.6642007 0.7268119 2
785   1.391837 -0.6642007 0.7268119 2
786   1.391837 -0.6642007 0.7268119 2
787   1.391837 -0.6642007 0.7268119 2
788   1.391837 -0.6642007 0.7268119 2
789   1.391837 -0.6642007 0.7268119 3
790   1.391837 -0.6642007 0.7268119 2
791   1.391837 -0.6642007 0.7268119 1
792   1.391837 -0.6642007 0.7268119 3
793   1.391837 -0.6642007 0.7268119 2
794   1.391837 -0.6642007 0.7268119 3
795   1.391837 -0.6642007 0.7268119 1
796   1.391837 -0.6642007 0.7268119 3
797   1.391837 -0.6642007 0.7268119 2
798   1.391837 -0.6642007 0.7268119 3
799   1.391837 -0.6642007 0.7268119 3
800   1.391837 -0.6642007 0.7268119 1
801   1.391837 -0.6642007 0.7268119 3
802   1.391837 -0.6642007 0.7268119 3
803   1.391837 -0.6642007 0.7268119 1
804   1.391837 -0.6642007 0.7268119 1
805   1.391837 -0.6642007 0.7268119 3
806   1.391837 -0.6642007 0.7268119 3
807   1.391837 -0.6642007 0.7268119 2
808   1.391837 -0.6642007 0.7268119 3
809   1.391837 -0.6642007 0.7268119 3
810   1.391837 -0.6642007 0.7268119 1
811   1.391837 -0.6642007 0.7268119 2
812   1.391837 -0.6642007 0.7268119 1
813   1.391837 -0.6642007 0.7268119 1
814   1.391837 -0.6642007 0.7268119 1
815   1.391837 -0.6642007 0.7268119 1
816   1.391837 -0.6642007 0.7268119 1
817   1.391837 -0.6642007 0.7268119 1
818   1.391837 -0.6642007 0.7268119 3
819   1.391837 -0.6642007 0.7268119 1
820   1.391837 -0.6642007 0.7268119 1
821   1.391837 -0.6642007 0.7268119 2
822   1.391837 -0.6642007 0.7268119 2
823   1.391837 -0.6642007 0.7268119 3
824   1.391837 -0.6642007 0.7268119 2
825   1.391837 -0.6642007 0.7268119 2
826   1.391837 -0.6642007 0.7268119 2
827   1.391837 -0.6642007 0.7268119 2
828   1.391837 -0.6642007 0.7268119 2
829   1.391837 -0.6642007 0.7268119 2
830   1.391837 -0.6642007 0.7268119 1
831   1.391837 -0.6642007 0.7268119 2
832   1.391837 -0.6642007 0.7268119 2
833   1.391837 -0.6642007 0.7268119 3
834   1.391837 -0.6642007 0.7268119 2
835   1.391837 -0.6642007 0.7268119 2
836   1.391837 -0.6642007 0.7268119 1
837   1.391837 -0.6642007 0.7268119 2
838   1.391837 -0.6642007 0.7268119 1
839   1.391837 -0.6642007 0.7268119 1
840   1.391837 -0.6642007 0.7268119 1
841   1.391837 -0.6642007 0.7268119 2
842   1.391837 -0.6642007 0.7268119 3
843   1.391837 -0.6642007 0.7268119 2
844   1.391837 -0.6642007 0.7268119 1
845   1.391837 -0.6642007 0.7268119 2
846   1.391837 -0.6642007 0.7268119 3
847   1.391837 -0.6642007 0.7268119 3
848   1.391837 -0.6642007 0.7268119 3
849   1.391837 -0.6642007 0.7268119 1
850   1.391837 -0.6642007 0.7268119 2
851   1.391837 -0.6642007 0.7268119 3
852   1.391837 -0.6642007 0.7268119 2
853   1.391837 -0.6642007 0.7268119 1
854   1.391837 -0.6642007 0.7268119 2
855   1.391837 -0.6642007 0.7268119 3
856   1.391837 -0.6642007 0.7268119 3
857   1.391837 -0.6642007 0.7268119 1
858   1.391837 -0.6642007 0.7268119 3
859   1.391837 -0.6642007 0.7268119 1
860   1.391837 -0.6642007 0.7268119 3
861   1.391837 -0.6642007 0.7268119 3
862   1.391837 -0.6642007 0.7268119 1
863   1.391837 -0.6642007 0.7268119 3
864   1.391837 -0.6642007 0.7268119 3
865   1.391837 -0.6642007 0.7268119 3
866   1.391837 -0.6642007 0.7268119 1
867   1.391837 -0.6642007 0.7268119 2
868   1.391837 -0.6642007 0.7268119 3
869   1.391837 -0.6642007 0.7268119 3
870   1.391837 -0.6642007 0.7268119 2
871   1.391837 -0.6642007 0.7268119 3
872   1.391837 -0.6642007 0.7268119 1
873   1.391837 -0.6642007 0.7268119 1
874   1.391837 -0.6642007 0.7268119 2
875   1.391837 -0.6642007 0.7268119 3
876   1.391837 -0.6642007 0.7268119 1
877   1.391837 -0.6642007 0.7268119 3
878   1.391837 -0.6642007 0.7268119 3
879   1.391837 -0.6642007 0.7268119 1
880   1.391837 -0.6642007 0.7268119 2
881   1.391837 -0.6642007 0.7268119 1
882   1.391837 -0.6642007 0.7268119 3
883   1.391837 -0.6642007 0.7268119 1
884   1.391837 -0.6642007 0.7268119 2
885   1.391837 -0.6642007 0.7268119 3
886   1.391837 -0.6642007 0.7268119 3
887   1.391837 -0.6642007 0.7268119 1
888   1.391837 -0.6642007 0.7268119 2
889   1.391837 -0.6642007 0.7268119 3
890   1.391837 -0.6642007 0.7268119 1
891   1.391837 -0.6642007 0.7268119 3
892   1.391837 -0.6642007 0.7268119 2
893   1.391837 -0.6642007 0.7268119 2
894   1.391837 -0.6642007 0.7268119 3
895   1.391837 -0.6642007 0.7268119 3
896   1.391837 -0.6642007 0.7268119 1
897   1.391837 -0.6642007 0.7268119 2
898   1.391837 -0.6642007 0.7268119 1
899   1.391837 -0.6642007 0.7268119 3
900   1.391837 -0.6642007 0.7268119 3
901   1.391837 -0.6642007 0.7268119 3
902   1.391837 -0.6642007 0.7268119 3
903   1.391837 -0.6642007 0.7268119 3
904   1.391837 -0.6642007 0.7268119 3
905   1.391837 -0.6642007 0.7268119 2
906   1.391837 -0.6642007 0.7268119 2
907   1.391837 -0.6642007 0.7268119 3
908   1.391837 -0.6642007 0.7268119 1
909   1.391837 -0.6642007 0.7268119 2
910   1.391837 -0.6642007 0.7268119 1
911   1.391837 -0.6642007 0.7268119 3
912   1.391837 -0.6642007 0.7268119 3
913   1.391837 -0.6642007 0.7268119 3
914   1.391837 -0.6642007 0.7268119 2
915   1.391837 -0.6642007 0.7268119 1
916   1.391837 -0.6642007 0.7268119 2
917   1.391837 -0.6642007 0.7268119 3
918   1.391837 -0.6642007 0.7268119 2
919   1.391837 -0.6642007 0.7268119 3
920   1.302377 -0.6747770 0.7192898 1
921   1.302377 -0.6747770 0.7192898 1
922   1.302377 -0.6747770 0.7192898 2
923   1.302377 -0.6747770 0.7192898 1
924   1.302377 -0.6747770 0.7192898 2
925   1.302377 -0.6747770 0.7192898 3
926   1.302377 -0.6747770 0.7192898 2
927   1.302377 -0.6747770 0.7192898 3
928   1.302377 -0.6747770 0.7192898 1
929   1.302377 -0.6747770 0.7192898 1
930   1.302377 -0.6747770 0.7192898 2
931   1.302377 -0.6747770 0.7192898 3
932   1.302377 -0.6747770 0.7192898 1
933   1.302377 -0.6747770 0.7192898 3
934   1.302377 -0.6747770 0.7192898 3
935   1.302377 -0.6747770 0.7192898 3
936   1.302377 -0.6747770 0.7192898 2
937   1.302377 -0.6747770 0.7192898 1
938   1.302377 -0.6747770 0.7192898 2
939   1.302377 -0.6747770 0.7192898 1
940   1.302377 -0.6747770 0.7192898 1
941   1.302377 -0.6747770 0.7192898 2
942   1.302377 -0.6747770 0.7192898 2
943   1.302377 -0.6747770 0.7192898 1
944   1.302377 -0.6747770 0.7192898 3
945   1.302377 -0.6747770 0.7192898 3
946   1.302377 -0.6747770 0.7192898 1
947   1.302377 -0.6747770 0.7192898 3
948   1.302377 -0.6747770 0.7192898 1
949   1.302377 -0.6747770 0.7192898 2
950   1.302377 -0.6747770 0.7192898 3
951   1.302377 -0.6747770 0.7192898 1
952   1.302377 -0.6747770 0.7192898 2
953   1.302377 -0.6747770 0.7192898 3
954   1.302377 -0.6747770 0.7192898 1
955   1.302377 -0.6747770 0.7192898 1
956   1.302377 -0.6747770 0.7192898 1
957   1.302377 -0.6747770 0.7192898 1
958   1.302377 -0.6747770 0.7192898 3
959   1.302377 -0.6747770 0.7192898 2
960   1.302377 -0.6747770 0.7192898 1
961   1.302377 -0.6747770 0.7192898 2
962   1.302377 -0.6747770 0.7192898 1
963   1.302377 -0.6747770 0.7192898 1
964   1.302377 -0.6747770 0.7192898 3
965   1.302377 -0.6747770 0.7192898 1
966   1.302377 -0.6747770 0.7192898 1
967   1.302377 -0.6747770 0.7192898 1
968   1.302377 -0.6747770 0.7192898 1
969   1.302377 -0.6747770 0.7192898 3
970   1.302377 -0.6747770 0.7192898 1
971   1.302377 -0.6747770 0.7192898 2
972   1.302377 -0.6747770 0.7192898 1
973   1.302377 -0.6747770 0.7192898 1
974   1.302377 -0.6747770 0.7192898 1
975   1.302377 -0.6747770 0.7192898 3
976   1.302377 -0.6747770 0.7192898 2
977   1.302377 -0.6747770 0.7192898 3
978   1.302377 -0.6747770 0.7192898 1
979   1.302377 -0.6747770 0.7192898 2
980   1.302377 -0.6747770 0.7192898 1
981   1.302377 -0.6747770 0.7192898 1
982   1.302377 -0.6747770 0.7192898 2
983   1.302377 -0.6747770 0.7192898 1
984   1.302377 -0.6747770 0.7192898 3
985   1.302377 -0.6747770 0.7192898 3
986   1.302377 -0.6747770 0.7192898 3
987   1.302377 -0.6747770 0.7192898 3
988   1.302377 -0.6747770 0.7192898 2
989   1.302377 -0.6747770 0.7192898 1
990   1.302377 -0.6747770 0.7192898 2
991   1.302377 -0.6747770 0.7192898 1
992   1.302377 -0.6747770 0.7192898 1
993   1.302377 -0.6747770 0.7192898 2
994   1.302377 -0.6747770 0.7192898 2
995   1.302377 -0.6747770 0.7192898 3
996   1.302377 -0.6747770 0.7192898 2
997   1.302377 -0.6747770 0.7192898 2
998   1.302377 -0.6747770 0.7192898 3
999   1.302377 -0.6747770 0.7192898 3
1000  1.302377 -0.6747770 0.7192898 1
1001  1.302377 -0.6747770 0.7192898 2
1002  1.302377 -0.6747770 0.7192898 3
1003  1.302377 -0.6747770 0.7192898 3
1004  1.302377 -0.6747770 0.7192898 1
1005  1.302377 -0.6747770 0.7192898 2
1006  1.302377 -0.6747770 0.7192898 1
1007  1.302377 -0.6747770 0.7192898 3
1008  1.302377 -0.6747770 0.7192898 2
1009  1.302377 -0.6747770 0.7192898 1
1010  1.302377 -0.6747770 0.7192898 3
1011  1.302377 -0.6747770 0.7192898 1
1012  1.302377 -0.6747770 0.7192898 1
1013  1.302377 -0.6747770 0.7192898 3
1014  1.302377 -0.6747770 0.7192898 3
1015  1.302377 -0.6747770 0.7192898 3
1016  1.302377 -0.6747770 0.7192898 3
1017  1.302377 -0.6747770 0.7192898 1
1018  1.302377 -0.6747770 0.7192898 1
1019  1.302377 -0.6747770 0.7192898 2
1020  1.302377 -0.6747770 0.7192898 3
1021  1.302377 -0.6747770 0.7192898 1
1022  1.302377 -0.6747770 0.7192898 2
1023  1.302377 -0.6747770 0.7192898 3
1024  1.302377 -0.6747770 0.7192898 3
1025  1.302377 -0.6747770 0.7192898 1
1026  1.302377 -0.6747770 0.7192898 1
1027  1.302377 -0.6747770 0.7192898 1
1028  1.302377 -0.6747770 0.7192898 3
1029  1.302377 -0.6747770 0.7192898 3
1030  1.302377 -0.6747770 0.7192898 2
1031  1.302377 -0.6747770 0.7192898 3
1032  1.302377 -0.6747770 0.7192898 2
1033  1.302377 -0.6747770 0.7192898 3
1034  1.302377 -0.6747770 0.7192898 3
1035  1.302377 -0.6747770 0.7192898 3
1036  1.302377 -0.6747770 0.7192898 2
1037  1.302377 -0.6747770 0.7192898 1
1038  1.302377 -0.6747770 0.7192898 3
1039  1.302377 -0.6747770 0.7192898 3
1040  1.302377 -0.6747770 0.7192898 1
1041  1.302377 -0.6747770 0.7192898 3
1042  1.302377 -0.6747770 0.7192898 1
1043  1.302377 -0.6747770 0.7192898 3
1044  1.302377 -0.6747770 0.7192898 1
1045  1.302377 -0.6747770 0.7192898 1
1046  1.302377 -0.6747770 0.7192898 2
1047  1.302377 -0.6747770 0.7192898 2
1048  1.302377 -0.6747770 0.7192898 3
1049  1.302377 -0.6747770 0.7192898 3
1050  1.302377 -0.6747770 0.7192898 2
1051  1.302377 -0.6747770 0.7192898 3
1052  1.302377 -0.6747770 0.7192898 2
1053  1.302377 -0.6747770 0.7192898 3
1054  1.302377 -0.6747770 0.7192898 2
1055  1.302377 -0.6747770 0.7192898 3
1056  1.302377 -0.6747770 0.7192898 2
1057  1.302377 -0.6747770 0.7192898 2
1058  1.302377 -0.6747770 0.7192898 2
1059  1.302377 -0.6747770 0.7192898 2
1060  1.302377 -0.6747770 0.7192898 3
1061  1.302377 -0.6747770 0.7192898 1
1062  1.302377 -0.6747770 0.7192898 3
1063  1.302377 -0.6747770 0.7192898 3
1064  1.302377 -0.6747770 0.7192898 1
1065  1.302377 -0.6747770 0.7192898 1
1066  1.302377 -0.6747770 0.7192898 3
1067  1.302377 -0.6747770 0.7192898 1
1068  1.302377 -0.6747770 0.7192898 1
1069  1.302377 -0.6747770 0.7192898 1
1070  1.302377 -0.6747770 0.7192898 3
1071  1.302377 -0.6747770 0.7192898 2
1072  1.302377 -0.6747770 0.7192898 2
1073  1.302377 -0.6747770 0.7192898 1
1074  1.302377 -0.6747770 0.7192898 3
1075  1.302377 -0.6747770 0.7192898 3
1076  1.302377 -0.6747770 0.7192898 1
1077  1.302377 -0.6747770 0.7192898 3
1078  1.302377 -0.6747770 0.7192898 3
1079  1.302377 -0.6747770 0.7192898 3
1080  1.302377 -0.6747770 0.7192898 2
1081  1.302377 -0.6747770 0.7192898 2
1082  1.302377 -0.6747770 0.7192898 3
1083  1.302377 -0.6747770 0.7192898 1
1084  1.302377 -0.6747770 0.7192898 3
1085  1.302377 -0.6747770 0.7192898 3
1086  1.302377 -0.6747770 0.7192898 2
1087  1.302377 -0.6747770 0.7192898 3
1088  1.302377 -0.6747770 0.7192898 2
1089  1.302377 -0.6747770 0.7192898 1
1090  1.302377 -0.6747770 0.7192898 3
1091  1.302377 -0.6747770 0.7192898 2
1092  1.302377 -0.6747770 0.7192898 3
1093  1.302377 -0.6747770 0.7192898 1
1094  1.302377 -0.6747770 0.7192898 1
1095  1.302377 -0.6747770 0.7192898 2
1096  1.302377 -0.6747770 0.7192898 2
1097  1.302377 -0.6747770 0.7192898 3
1098  1.302377 -0.6747770 0.7192898 1
1099  1.302377 -0.6747770 0.7192898 2
1100  1.302377 -0.6747770 0.7192898 2
1101  1.302377 -0.6747770 0.7192898 2
1102  1.302377 -0.6747770 0.7192898 2
1103  1.302377 -0.6747770 0.7192898 3
1104  1.302377 -0.6747770 0.7192898 3
1105  1.302377 -0.6747770 0.7192898 1
1106  1.302377 -0.6747770 0.7192898 2
1107  1.302377 -0.6747770 0.7192898 3
1108  1.302377 -0.6747770 0.7192898 1
1109  1.302377 -0.6747770 0.7192898 1
1110  1.302377 -0.6747770 0.7192898 3
1111  1.302377 -0.6747770 0.7192898 2
1112  1.302377 -0.6747770 0.7192898 1
1113  1.302377 -0.6747770 0.7192898 2
1114  1.302377 -0.6747770 0.7192898 3
1115  1.302377 -0.6747770 0.7192898 2
1116  1.302377 -0.6747770 0.7192898 1
1117  1.302377 -0.6747770 0.7192898 2
1118  1.302377 -0.6747770 0.7192898 2
1119  1.302377 -0.6747770 0.7192898 2
1120  1.302377 -0.6747770 0.7192898 1
1121  1.302377 -0.6747770 0.7192898 1
1122  1.302377 -0.6747770 0.7192898 2
1123  1.302377 -0.6747770 0.7192898 1
1124  1.302377 -0.6747770 0.7192898 3
1125  1.302377 -0.6747770 0.7192898 1
1126  1.302377 -0.6747770 0.7192898 2
1127  1.302377 -0.6747770 0.7192898 3
1128  1.302377 -0.6747770 0.7192898 1
1129  1.302377 -0.6747770 0.7192898 1
1130  1.302377 -0.6747770 0.7192898 3
1131  1.302377 -0.6747770 0.7192898 3
1132  1.302377 -0.6747770 0.7192898 1
1133  1.302377 -0.6747770 0.7192898 1
1134  1.302377 -0.6747770 0.7192898 1
1135  1.302377 -0.6747770 0.7192898 1
1136  1.302377 -0.6747770 0.7192898 3
1137  1.302377 -0.6747770 0.7192898 1
1138  1.302377 -0.6747770 0.7192898 1
1139  1.302377 -0.6747770 0.7192898 1
1140  1.302377 -0.6747770 0.7192898 3
1141  1.302377 -0.6747770 0.7192898 2
1142  1.302377 -0.6747770 0.7192898 1
1143  1.302377 -0.6747770 0.7192898 2
1144  1.302377 -0.6747770 0.7192898 3
1145  1.302377 -0.6747770 0.7192898 3
1146  1.302377 -0.6747770 0.7192898 2
1147  1.302377 -0.6747770 0.7192898 1
1148  1.302377 -0.6747770 0.7192898 3
1149  1.302377 -0.6747770 0.7192898 1
1150  1.302377 -0.6747770 0.7192898 3
1151  1.302377 -0.6747770 0.7192898 2
1152  1.302377 -0.6747770 0.7192898 2
1153  1.302377 -0.6747770 0.7192898 1
1154  1.302377 -0.6747770 0.7192898 1
1155  1.302377 -0.6747770 0.7192898 2
1156  1.302377 -0.6747770 0.7192898 2
1157  1.302377 -0.6747770 0.7192898 3
1158  1.302377 -0.6747770 0.7192898 1
1159  1.302377 -0.6747770 0.7192898 3
1160  1.302377 -0.6747770 0.7192898 2
1161  1.302377 -0.6747770 0.7192898 3
1162  1.302377 -0.6747770 0.7192898 3
1163  1.302377 -0.6747770 0.7192898 2
1164  1.302377 -0.6747770 0.7192898 1
1165  1.302377 -0.6747770 0.7192898 2
1166  1.302377 -0.6747770 0.7192898 3
1167  1.302377 -0.6747770 0.7192898 3
1168  1.302377 -0.6747770 0.7192898 3
1169  1.302377 -0.6747770 0.7192898 2
1170  1.302377 -0.6747770 0.7192898 2
1171  1.302377 -0.6747770 0.7192898 2
1172  1.302377 -0.6747770 0.7192898 2
1173  1.302377 -0.6747770 0.7192898 3
1174  1.302377 -0.6747770 0.7192898 3
1175  1.302377 -0.6747770 0.7192898 2
1176  1.302377 -0.6747770 0.7192898 1
1177  1.302377 -0.6747770 0.7192898 2
1178  1.302377 -0.6747770 0.7192898 1
1179  1.302377 -0.6747770 0.7192898 3
1180  1.302377 -0.6747770 0.7192898 2
1181  1.302377 -0.6747770 0.7192898 3
1182  1.302377 -0.6747770 0.7192898 1
1183  1.302377 -0.6747770 0.7192898 3
1184  1.302377 -0.6747770 0.7192898 3
1185  1.302377 -0.6747770 0.7192898 1
1186  1.302377 -0.6747770 0.7192898 2
1187  1.302377 -0.6747770 0.7192898 1
1188  1.302377 -0.6747770 0.7192898 1
1189  1.302377 -0.6747770 0.7192898 3
1190  1.302377 -0.6747770 0.7192898 1
1191  1.302377 -0.6747770 0.7192898 2
1192  1.302377 -0.6747770 0.7192898 3
1193  1.302377 -0.6747770 0.7192898 3
1194  1.302377 -0.6747770 0.7192898 2
1195  1.302377 -0.6747770 0.7192898 1
1196  1.302377 -0.6747770 0.7192898 1
1197  1.302377 -0.6747770 0.7192898 3
1198  1.302377 -0.6747770 0.7192898 3
1199  1.302377 -0.6747770 0.7192898 1
1200  1.302377 -0.6747770 0.7192898 3
1201  1.302377 -0.6747770 0.7192898 2
1202  1.302377 -0.6747770 0.7192898 2
1203  1.302377 -0.6747770 0.7192898 2
1204  1.302377 -0.6747770 0.7192898 1
1205  1.302377 -0.6747770 0.7192898 2
1206  1.302377 -0.6747770 0.7192898 3
1207  1.302377 -0.6747770 0.7192898 1
1208  1.302377 -0.6747770 0.7192898 2
1209  1.302377 -0.6747770 0.7192898 3
1210  1.302377 -0.6747770 0.7192898 2
1211  1.302377 -0.6747770 0.7192898 2
1212  1.302377 -0.6747770 0.7192898 2
1213  1.302377 -0.6747770 0.7192898 2
1214  1.302377 -0.6747770 0.7192898 3
1215  1.302377 -0.6747770 0.7192898 3
1216  1.302377 -0.6747770 0.7192898 3
1217  1.302377 -0.6747770 0.7192898 3
1218  1.302377 -0.6747770 0.7192898 1
1219  1.302377 -0.6747770 0.7192898 1
1220  1.302377 -0.6747770 0.7192898 1
1221  1.302377 -0.6747770 0.7192898 2
1222  1.302377 -0.6747770 0.7192898 1
1223  1.302377 -0.6747770 0.7192898 3
1224  1.302377 -0.6747770 0.7192898 3
1225  1.302377 -0.6747770 0.7192898 3
1226  1.302377 -0.6747770 0.7192898 3
1227  1.302377 -0.6747770 0.7192898 3
1228  1.302377 -0.6747770 0.7192898 3
1229  1.302377 -0.6747770 0.7192898 2
1230  1.302377 -0.6747770 0.7192898 3
1231  1.302377 -0.6747770 0.7192898 1
1232  1.302377 -0.6747770 0.7192898 1
1233  1.302377 -0.6747770 0.7192898 2
1234  1.302377 -0.6747770 0.7192898 3
1235  1.302377 -0.6747770 0.7192898 1
1236  1.302377 -0.6747770 0.7192898 2
1237  1.302377 -0.6747770 0.7192898 1
1238  1.302377 -0.6747770 0.7192898 3
1239  1.302377 -0.6747770 0.7192898 3
1240  1.302377 -0.6747770 0.7192898 3
1241  1.302377 -0.6747770 0.7192898 1
1242  1.302377 -0.6747770 0.7192898 3
1243  1.302377 -0.6747770 0.7192898 1
1244  1.302377 -0.6747770 0.7192898 1
1245  1.302377 -0.6747770 0.7192898 2
1246  1.302377 -0.6747770 0.7192898 2
1247  1.302377 -0.6747770 0.7192898 2
1248  1.302377 -0.6747770 0.7192898 3
1249  1.302377 -0.6747770 0.7192898 1
1250  1.302377 -0.6747770 0.7192898 2
1251  1.302377 -0.6747770 0.7192898 3
1252  1.302377 -0.6747770 0.7192898 1
1253  1.302377 -0.6747770 0.7192898 3
1254  1.302377 -0.6747770 0.7192898 3
1255  1.302377 -0.6747770 0.7192898 3
1256  1.302377 -0.6747770 0.7192898 3
1257  1.302377 -0.6747770 0.7192898 3
1258  1.302377 -0.6747770 0.7192898 3
1259  1.302377 -0.6747770 0.7192898 3
1260  1.302377 -0.6747770 0.7192898 2
1261  1.302377 -0.6747770 0.7192898 2
1262  1.302377 -0.6747770 0.7192898 2
1263  1.302377 -0.6747770 0.7192898 1
1264  1.302377 -0.6747770 0.7192898 3
1265  1.302377 -0.6747770 0.7192898 3
1266  1.302377 -0.6747770 0.7192898 1
1267  1.302377 -0.6747770 0.7192898 3
1268  1.302377 -0.6747770 0.7192898 2
1269  1.302377 -0.6747770 0.7192898 2
1270  1.302377 -0.6747770 0.7192898 1
1271  1.302377 -0.6747770 0.7192898 1
1272  1.302377 -0.6747770 0.7192898 2
1273  1.302377 -0.6747770 0.7192898 3
1274  1.302377 -0.6747770 0.7192898 3
1275  1.302377 -0.6747770 0.7192898 3
1276  1.302377 -0.6747770 0.7192898 2
1277  1.302377 -0.6747770 0.7192898 2
1278  1.302377 -0.6747770 0.7192898 2
1279  1.302377 -0.6747770 0.7192898 1
1280  1.302377 -0.6747770 0.7192898 3
1281  1.302377 -0.6747770 0.7192898 1
1282  1.302377 -0.6747770 0.7192898 1
1283  1.302377 -0.6747770 0.7192898 3
1284  1.302377 -0.6747770 0.7192898 3
1285  1.302377 -0.6747770 0.7192898 2
1286  1.302377 -0.6747770 0.7192898 3
1287  1.302377 -0.6747770 0.7192898 1
1288  1.302377 -0.6747770 0.7192898 1
1289  1.302377 -0.6747770 0.7192898 3
1290  1.302377 -0.6747770 0.7192898 2
1291  1.302377 -0.6747770 0.7192898 2
1292  1.302377 -0.6747770 0.7192898 2
1293  1.302377 -0.6747770 0.7192898 3
1294  1.302377 -0.6747770 0.7192898 3
1295  1.302377 -0.6747770 0.7192898 3
1296  1.302377 -0.6747770 0.7192898 1
1297  1.302377 -0.6747770 0.7192898 3
1298  1.302377 -0.6747770 0.7192898 1
1299  1.302377 -0.6747770 0.7192898 3
1300  1.302377 -0.6747770 0.7192898 2
1301  1.302377 -0.6747770 0.7192898 3
1302  1.302377 -0.6747770 0.7192898 2
1303  1.302377 -0.6747770 0.7192898 1
1304  1.302377 -0.6747770 0.7192898 1
1305  1.302377 -0.6747770 0.7192898 3
1306  1.302377 -0.6747770 0.7192898 3
1307  1.302377 -0.6747770 0.7192898 3
1308  1.302377 -0.6747770 0.7192898 1
1309  1.302377 -0.6747770 0.7192898 3
1310  1.302377 -0.6747770 0.7192898 2
1311  1.302377 -0.6747770 0.7192898 2
1312  1.302377 -0.6747770 0.7192898 1
1313  1.302377 -0.6747770 0.7192898 1
1314  1.302377 -0.6747770 0.7192898 1
1315  1.302377 -0.6747770 0.7192898 1
1316  1.302377 -0.6747770 0.7192898 2
1317  1.302377 -0.6747770 0.7192898 3
1318  1.302377 -0.6747770 0.7192898 1
1319  1.302377 -0.6747770 0.7192898 1
1320  1.302377 -0.6747770 0.7192898 3
1321  1.302377 -0.6747770 0.7192898 2
1322  1.302377 -0.6747770 0.7192898 2
1323  1.302377 -0.6747770 0.7192898 3
1324  1.302377 -0.6747770 0.7192898 2
1325  1.302377 -0.6747770 0.7192898 3
1326  1.302377 -0.6747770 0.7192898 1
1327  1.302377 -0.6747770 0.7192898 2
1328  1.302377 -0.6747770 0.7192898 1
1329  1.302377 -0.6747770 0.7192898 1
1330  1.302377 -0.6747770 0.7192898 1
1331  1.302377 -0.6747770 0.7192898 2
1332  1.302377 -0.6747770 0.7192898 1
1333  1.302377 -0.6747770 0.7192898 1
1334  1.302377 -0.6747770 0.7192898 2
1335  1.302377 -0.6747770 0.7192898 2
1336  1.302377 -0.6747770 0.7192898 2
1337  1.302377 -0.6747770 0.7192898 2
1338  1.302377 -0.6747770 0.7192898 1
1339  1.302377 -0.6747770 0.7192898 1
1340  1.302377 -0.6747770 0.7192898 1
1341  1.302377 -0.6747770 0.7192898 2
1342  1.302377 -0.6747770 0.7192898 3
1343  1.302377 -0.6747770 0.7192898 2
1344  1.302377 -0.6747770 0.7192898 1
1345  1.302377 -0.6747770 0.7192898 3
1346  1.302377 -0.6747770 0.7192898 3
1347  1.302377 -0.6747770 0.7192898 3
1348  1.302377 -0.6747770 0.7192898 1
1349  1.302377 -0.6747770 0.7192898 2
1350  1.302377 -0.6747770 0.7192898 2
1351  1.302377 -0.6747770 0.7192898 2
1352  1.302377 -0.6747770 0.7192898 1
1353  1.302377 -0.6747770 0.7192898 3
1354  1.302377 -0.6747770 0.7192898 1
1355  1.302377 -0.6747770 0.7192898 3
1356  1.302377 -0.6747770 0.7192898 3
1357  1.302377 -0.6747770 0.7192898 3
1358  1.302377 -0.6747770 0.7192898 1
1359  1.302377 -0.6747770 0.7192898 1
1360  1.302377 -0.6747770 0.7192898 2
1361  1.302377 -0.6747770 0.7192898 1
1362  1.302377 -0.6747770 0.7192898 1
1363  1.302377 -0.6747770 0.7192898 3
1364  1.302377 -0.6747770 0.7192898 1
1365  1.302377 -0.6747770 0.7192898 1
1366  1.302377 -0.6747770 0.7192898 2
1367  1.302377 -0.6747770 0.7192898 2
1368  1.302377 -0.6747770 0.7192898 1
1369  1.302377 -0.6747770 0.7192898 3
1370  1.302377 -0.6747770 0.7192898 2
1371  1.302377 -0.6747770 0.7192898 1
1372  1.302377 -0.6747770 0.7192898 2
1373  1.302377 -0.6747770 0.7192898 2
1374  1.302377 -0.6747770 0.7192898 2
1375  1.302377 -0.6747770 0.7192898 1
1376  1.302377 -0.6747770 0.7192898 2
1377  1.302377 -0.6747770 0.7192898 2
1378  1.302377 -0.6747770 0.7192898 2
1379  1.302377 -0.6747770 0.7192898 3
1380  1.302377 -0.6747770 0.7192898 2
1381  1.302377 -0.6747770 0.7192898 3
1382  1.302377 -0.6747770 0.7192898 1
1383  1.302377 -0.6747770 0.7192898 2
1384  1.302377 -0.6747770 0.7192898 1
1385  1.302377 -0.6747770 0.7192898 3
1386  1.302377 -0.6747770 0.7192898 2
1387  1.302377 -0.6747770 0.7192898 3
1388  1.302377 -0.6747770 0.7192898 2
1389  1.302377 -0.6747770 0.7192898 2
1390  1.302377 -0.6747770 0.7192898 1
1391  1.302377 -0.6747770 0.7192898 3
1392  1.302377 -0.6747770 0.7192898 3
1393  1.302377 -0.6747770 0.7192898 2
1394  1.302377 -0.6747770 0.7192898 3
1395  1.302377 -0.6747770 0.7192898 2
1396  1.302377 -0.6747770 0.7192898 1
1397  1.302377 -0.6747770 0.7192898 2
1398  1.302377 -0.6747770 0.7192898 1
1399  1.302377 -0.6747770 0.7192898 2
1400  1.302377 -0.6747770 0.7192898 3
1401  1.302377 -0.6747770 0.7192898 2
1402  1.302377 -0.6747770 0.7192898 2
1403  1.302377 -0.6747770 0.7192898 1
1404  1.302377 -0.6747770 0.7192898 3
1405  1.302377 -0.6747770 0.7192898 1
1406  1.302377 -0.6747770 0.7192898 3
1407  1.302377 -0.6747770 0.7192898 2
1408  1.302377 -0.6747770 0.7192898 2
1409  1.302377 -0.6747770 0.7192898 1
1410  1.302377 -0.6747770 0.7192898 2
1411  1.302377 -0.6747770 0.7192898 3
1412  1.302377 -0.6747770 0.7192898 1
1413  1.302377 -0.6747770 0.7192898 2
1414  1.302377 -0.6747770 0.7192898 3
1415  1.302377 -0.6747770 0.7192898 3
1416  1.302377 -0.6747770 0.7192898 2
1417  1.302377 -0.6747770 0.7192898 1
1418  1.302377 -0.6747770 0.7192898 2
1419  1.302377 -0.6747770 0.7192898 3
1420  1.302377 -0.6747770 0.7192898 2
1421  1.302377 -0.6747770 0.7192898 2
1422  1.302377 -0.6747770 0.7192898 3
1423  1.302377 -0.6747770 0.7192898 1
1424  1.302377 -0.6747770 0.7192898 1
1425  1.302377 -0.6747770 0.7192898 3
1426  1.302377 -0.6747770 0.7192898 3
1427  1.302377 -0.6747770 0.7192898 2
1428  1.302377 -0.6747770 0.7192898 2
1429  1.302377 -0.6747770 0.7192898 3
1430  1.302377 -0.6747770 0.7192898 2
1431  1.302377 -0.6747770 0.7192898 3
1432  1.302377 -0.6747770 0.7192898 3
1433  1.302377 -0.6747770 0.7192898 1
1434  1.302377 -0.6747770 0.7192898 3
1435  1.302377 -0.6747770 0.7192898 2
1436  1.302377 -0.6747770 0.7192898 1
1437  1.302377 -0.6747770 0.7192898 2
1438  1.302377 -0.6747770 0.7192898 2
1439  1.302377 -0.6747770 0.7192898 2
1440  1.302377 -0.6747770 0.7192898 1
1441  1.302377 -0.6747770 0.7192898 3
1442  1.302377 -0.6747770 0.7192898 3
1443  1.302377 -0.6747770 0.7192898 2
1444  1.302377 -0.6747770 0.7192898 3
1445  1.302377 -0.6747770 0.7192898 1
1446  1.302377 -0.6747770 0.7192898 3
1447  1.302377 -0.6747770 0.7192898 3
1448  1.302377 -0.6747770 0.7192898 2
1449  1.302377 -0.6747770 0.7192898 3
1450  1.302377 -0.6747770 0.7192898 2
1451  1.302377 -0.6747770 0.7192898 2
1452  1.302377 -0.6747770 0.7192898 2
1453  1.302377 -0.6747770 0.7192898 1
1454  1.302377 -0.6747770 0.7192898 3
1455  1.302377 -0.6747770 0.7192898 3
1456  1.302377 -0.6747770 0.7192898 1
1457  1.302377 -0.6747770 0.7192898 3
1458  1.302377 -0.6747770 0.7192898 1
1459  1.302377 -0.6747770 0.7192898 3
1460  1.302377 -0.6747770 0.7192898 2
1461  1.302377 -0.6747770 0.7192898 1
1462  1.302377 -0.6747770 0.7192898 2
1463  1.302377 -0.6747770 0.7192898 3
1464  1.302377 -0.6747770 0.7192898 3
1465  1.302377 -0.6747770 0.7192898 2
1466  1.302377 -0.6747770 0.7192898 3
1467  1.302377 -0.6747770 0.7192898 2
1468  1.302377 -0.6747770 0.7192898 3
1469  1.302377 -0.6747770 0.7192898 2
1470  1.302377 -0.6747770 0.7192898 1
1471  1.302377 -0.6747770 0.7192898 2
1472  1.302377 -0.6747770 0.7192898 3
1473  1.302377 -0.6747770 0.7192898 2
1474  1.302377 -0.6747770 0.7192898 2
1475  1.302377 -0.6747770 0.7192898 3
1476  1.302377 -0.6747770 0.7192898 2
1477  1.302377 -0.6747770 0.7192898 3
1478  1.302377 -0.6747770 0.7192898 3
1479  1.302377 -0.6747770 0.7192898 3
1480  1.302377 -0.6747770 0.7192898 1
1481  1.302377 -0.6747770 0.7192898 1
1482  1.302377 -0.6747770 0.7192898 2
1483  1.302377 -0.6747770 0.7192898 1
1484  1.302377 -0.6747770 0.7192898 1
1485  1.302377 -0.6747770 0.7192898 3
1486  1.302377 -0.6747770 0.7192898 3
1487  1.302377 -0.6747770 0.7192898 2
1488  1.302377 -0.6747770 0.7192898 3
1489  1.302377 -0.6747770 0.7192898 3
1490  1.302377 -0.6747770 0.7192898 2
1491  1.302377 -0.6747770 0.7192898 1
1492  1.302377 -0.6747770 0.7192898 1
1493  1.302377 -0.6747770 0.7192898 3
1494  1.302377 -0.6747770 0.7192898 3
1495  1.302377 -0.6747770 0.7192898 2
1496  1.302377 -0.6747770 0.7192898 3
1497  1.302377 -0.6747770 0.7192898 3
1498  1.302377 -0.6747770 0.7192898 3
1499  1.302377 -0.6747770 0.7192898 3
1500  1.302377 -0.6747770 0.7192898 2
1501  1.302377 -0.6747770 0.7192898 3
1502  1.302377 -0.6747770 0.7192898 3
1503  1.302377 -0.6747770 0.7192898 3
1504  1.302377 -0.6747770 0.7192898 2
1505  1.302377 -0.6747770 0.7192898 1
1506  1.302377 -0.6747770 0.7192898 3
1507  1.302377 -0.6747770 0.7192898 2
1508  1.302377 -0.6747770 0.7192898 2
1509  1.302377 -0.6747770 0.7192898 2
1510  1.302377 -0.6747770 0.7192898 2
1511  1.302377 -0.6747770 0.7192898 3
1512  1.302377 -0.6747770 0.7192898 1
1513  1.302377 -0.6747770 0.7192898 3
1514  1.302377 -0.6747770 0.7192898 2
1515  1.302377 -0.6747770 0.7192898 3
1516  1.302377 -0.6747770 0.7192898 1
1517  1.302377 -0.6747770 0.7192898 1
1518  1.302377 -0.6747770 0.7192898 3
1519  1.302377 -0.6747770 0.7192898 2
1520  1.302377 -0.6747770 0.7192898 3
1521  1.302377 -0.6747770 0.7192898 3
1522  1.302377 -0.6747770 0.7192898 3
1523  1.302377 -0.6747770 0.7192898 3
1524  1.302377 -0.6747770 0.7192898 3
1525  1.302377 -0.6747770 0.7192898 2
1526  1.302377 -0.6747770 0.7192898 2
1527  1.302377 -0.6747770 0.7192898 1
1528  1.302377 -0.6747770 0.7192898 3
1529  1.302377 -0.6747770 0.7192898 3
1530  1.302377 -0.6747770 0.7192898 3
1531  1.302377 -0.6747770 0.7192898 1
1532  1.302377 -0.6747770 0.7192898 1
1533  1.302377 -0.6747770 0.7192898 2
1534  1.302377 -0.6747770 0.7192898 3
1535  1.302377 -0.6747770 0.7192898 2
1536  1.302377 -0.6747770 0.7192898 3
1537  1.302377 -0.6747770 0.7192898 3
1538  1.302377 -0.6747770 0.7192898 1
1539  1.302377 -0.6747770 0.7192898 3
1540  1.302377 -0.6747770 0.7192898 2
1541  1.302377 -0.6747770 0.7192898 1
1542  1.302377 -0.6747770 0.7192898 2
1543  1.302377 -0.6747770 0.7192898 3
1544  1.302377 -0.6747770 0.7192898 3
1545  1.302377 -0.6747770 0.7192898 1
1546  1.302377 -0.6747770 0.7192898 1
1547  1.302377 -0.6747770 0.7192898 2
1548  1.302377 -0.6747770 0.7192898 3
1549  1.302377 -0.6747770 0.7192898 3
1550  1.302377 -0.6747770 0.7192898 3
1551  1.302377 -0.6747770 0.7192898 3
1552  1.302377 -0.6747770 0.7192898 3
1553  1.302377 -0.6747770 0.7192898 2
1554  1.302377 -0.6747770 0.7192898 3
1555  1.302377 -0.6747770 0.7192898 1
1556  1.302377 -0.6747770 0.7192898 3
1557  1.302377 -0.6747770 0.7192898 3
1558  1.302377 -0.6747770 0.7192898 1
1559  1.302377 -0.6747770 0.7192898 3
1560  1.302377 -0.6747770 0.7192898 3
1561  1.302377 -0.6747770 0.7192898 1
1562  1.302377 -0.6747770 0.7192898 2
1563  1.302377 -0.6747770 0.7192898 3
1564  1.302377 -0.6747770 0.7192898 1
1565  1.302377 -0.6747770 0.7192898 2
1566  1.302377 -0.6747770 0.7192898 1
1567  1.302377 -0.6747770 0.7192898 2
1568  1.302377 -0.6747770 0.7192898 3
1569  1.302377 -0.6747770 0.7192898 1
1570  1.302377 -0.6747770 0.7192898 1
1571  1.302377 -0.6747770 0.7192898 2
1572  1.302377 -0.6747770 0.7192898 1
1573  1.302377 -0.6747770 0.7192898 2
1574  1.302377 -0.6747770 0.7192898 1
1575  1.302377 -0.6747770 0.7192898 2
1576  1.302377 -0.6747770 0.7192898 3
1577  1.302377 -0.6747770 0.7192898 2
1578  1.302377 -0.6747770 0.7192898 2
1579  1.302377 -0.6747770 0.7192898 1
1580  1.302377 -0.6747770 0.7192898 2
1581  1.302377 -0.6747770 0.7192898 1
1582  1.302377 -0.6747770 0.7192898 1
1583  1.302377 -0.6747770 0.7192898 3
1584  1.302377 -0.6747770 0.7192898 2
1585  1.302377 -0.6747770 0.7192898 2
1586  1.302377 -0.6747770 0.7192898 2
1587  1.302377 -0.6747770 0.7192898 2
1588  1.302377 -0.6747770 0.7192898 1
1589  1.302377 -0.6747770 0.7192898 1
1590  1.302377 -0.6747770 0.7192898 1
1591  1.302377 -0.6747770 0.7192898 2
1592  1.302377 -0.6747770 0.7192898 1
1593  1.302377 -0.6747770 0.7192898 3
1594  1.302377 -0.6747770 0.7192898 1
1595  1.302377 -0.6747770 0.7192898 3
1596  1.302377 -0.6747770 0.7192898 2
1597  1.302377 -0.6747770 0.7192898 1
1598  1.302377 -0.6747770 0.7192898 2
1599  1.302377 -0.6747770 0.7192898 3
1600  1.302377 -0.6747770 0.7192898 2
1601  1.302377 -0.6747770 0.7192898 1
1602  1.302377 -0.6747770 0.7192898 2
1603  1.302377 -0.6747770 0.7192898 3
1604  1.302377 -0.6747770 0.7192898 3
1605  1.302377 -0.6747770 0.7192898 1
1606  1.302377 -0.6747770 0.7192898 1
1607  1.302377 -0.6747770 0.7192898 2
1608  1.302377 -0.6747770 0.7192898 1
1609  1.302377 -0.6747770 0.7192898 2
1610  1.302377 -0.6747770 0.7192898 3
1611  1.302377 -0.6747770 0.7192898 2
1612  1.302377 -0.6747770 0.7192898 2
1613  1.302377 -0.6747770 0.7192898 3
1614  1.302377 -0.6747770 0.7192898 2
1615  1.302377 -0.6747770 0.7192898 1
1616  1.302377 -0.6747770 0.7192898 2
1617  1.302377 -0.6747770 0.7192898 2
1618  1.302377 -0.6747770 0.7192898 2
1619  1.302377 -0.6747770 0.7192898 2
1620  1.302377 -0.6747770 0.7192898 3
1621  1.302377 -0.6747770 0.7192898 2
1622  1.302377 -0.6747770 0.7192898 3
1623  1.302377 -0.6747770 0.7192898 1
1624  1.302377 -0.6747770 0.7192898 1
1625  1.302377 -0.6747770 0.7192898 2
1626  1.302377 -0.6747770 0.7192898 2
1627  1.302377 -0.6747770 0.7192898 1
1628  1.302377 -0.6747770 0.7192898 3
1629  1.302377 -0.6747770 0.7192898 1
1630  1.302377 -0.6747770 0.7192898 1
1631  1.302377 -0.6747770 0.7192898 1
1632  1.302377 -0.6747770 0.7192898 2
1633  1.302377 -0.6747770 0.7192898 1
1634  1.302377 -0.6747770 0.7192898 1
1635  1.302377 -0.6747770 0.7192898 1
1636  1.302377 -0.6747770 0.7192898 3
1637  1.302377 -0.6747770 0.7192898 3
1638  1.302377 -0.6747770 0.7192898 3
1639  1.302377 -0.6747770 0.7192898 1
1640  1.302377 -0.6747770 0.7192898 1
1641  1.302377 -0.6747770 0.7192898 1
1642  1.302377 -0.6747770 0.7192898 1
1643  1.302377 -0.6747770 0.7192898 2
1644  1.302377 -0.6747770 0.7192898 2
1645  1.302377 -0.6747770 0.7192898 3
1646  1.302377 -0.6747770 0.7192898 1
1647  1.302377 -0.6747770 0.7192898 2
1648  1.302377 -0.6747770 0.7192898 1
1649  1.302377 -0.6747770 0.7192898 1
1650  1.302377 -0.6747770 0.7192898 3
1651  1.302377 -0.6747770 0.7192898 2
1652  1.302377 -0.6747770 0.7192898 2
1653  1.302377 -0.6747770 0.7192898 2
1654  1.302377 -0.6747770 0.7192898 1
1655  1.302377 -0.6747770 0.7192898 1
1656  1.302377 -0.6747770 0.7192898 1
1657  1.302377 -0.6747770 0.7192898 2
1658  1.302377 -0.6747770 0.7192898 2
1659  1.302377 -0.6747770 0.7192898 3
1660  1.302377 -0.6747770 0.7192898 1
1661  1.302377 -0.6747770 0.7192898 1
1662  1.302377 -0.6747770 0.7192898 3
1663  1.302377 -0.6747770 0.7192898 2
1664  1.302377 -0.6747770 0.7192898 2
1665  1.302377 -0.6747770 0.7192898 1
1666  1.302377 -0.6747770 0.7192898 2
1667  1.302377 -0.6747770 0.7192898 3
1668  1.302377 -0.6747770 0.7192898 3
1669  1.302377 -0.6747770 0.7192898 3
1670  1.302377 -0.6747770 0.7192898 1
1671  1.302377 -0.6747770 0.7192898 1
1672  1.302377 -0.6747770 0.7192898 3
1673  1.302377 -0.6747770 0.7192898 3
1674  1.302377 -0.6747770 0.7192898 2
1675  1.302377 -0.6747770 0.7192898 1
1676  1.302377 -0.6747770 0.7192898 1
1677  1.302377 -0.6747770 0.7192898 1
1678  1.302377 -0.6747770 0.7192898 1
1679  1.302377 -0.6747770 0.7192898 1
1680  1.302377 -0.6747770 0.7192898 2
1681  1.302377 -0.6747770 0.7192898 3
1682  1.302377 -0.6747770 0.7192898 3
1683  1.302377 -0.6747770 0.7192898 1
1684  1.302377 -0.6747770 0.7192898 3
1685  1.302377 -0.6747770 0.7192898 2
1686  1.302377 -0.6747770 0.7192898 2
1687  1.302377 -0.6747770 0.7192898 1
1688  1.302377 -0.6747770 0.7192898 1
1689  1.302377 -0.6747770 0.7192898 3
1690  1.302377 -0.6747770 0.7192898 1
1691  1.302377 -0.6747770 0.7192898 1
1692  1.302377 -0.6747770 0.7192898 1
1693  1.302377 -0.6747770 0.7192898 3
1694  1.302377 -0.6747770 0.7192898 1
1695  1.302377 -0.6747770 0.7192898 1
1696  1.302377 -0.6747770 0.7192898 3
1697  1.302377 -0.6747770 0.7192898 1
1698  1.302377 -0.6747770 0.7192898 2
1699  1.302377 -0.6747770 0.7192898 3
1700  1.302377 -0.6747770 0.7192898 1
1701  1.302377 -0.6747770 0.7192898 2
1702  1.302377 -0.6747770 0.7192898 1
1703  1.302377 -0.6747770 0.7192898 3
1704  1.302377 -0.6747770 0.7192898 2
1705  1.302377 -0.6747770 0.7192898 2
1706  1.302377 -0.6747770 0.7192898 3
1707  1.302377 -0.6747770 0.7192898 2
1708  1.302377 -0.6747770 0.7192898 2
1709  1.302377 -0.6747770 0.7192898 3
1710  1.302377 -0.6747770 0.7192898 2
1711  1.302377 -0.6747770 0.7192898 3
1712  1.302377 -0.6747770 0.7192898 1
1713  1.302377 -0.6747770 0.7192898 3
1714  1.302377 -0.6747770 0.7192898 3
1715  1.302377 -0.6747770 0.7192898 1
1716  1.302377 -0.6747770 0.7192898 1
1717  1.302377 -0.6747770 0.7192898 1
1718  1.302377 -0.6747770 0.7192898 2
1719  1.302377 -0.6747770 0.7192898 1
1720  1.302377 -0.6747770 0.7192898 1
1721  1.302377 -0.6747770 0.7192898 1
1722  1.302377 -0.6747770 0.7192898 3
1723  1.302377 -0.6747770 0.7192898 3
1724  1.302377 -0.6747770 0.7192898 2
1725  1.302377 -0.6747770 0.7192898 3
1726  1.302377 -0.6747770 0.7192898 2
1727  1.302377 -0.6747770 0.7192898 3
1728  1.302377 -0.6747770 0.7192898 3
1729  1.302377 -0.6747770 0.7192898 2
1730  1.302377 -0.6747770 0.7192898 2
1731  1.302377 -0.6747770 0.7192898 1
1732  1.302377 -0.6747770 0.7192898 3
1733  1.302377 -0.6747770 0.7192898 3
1734  1.302377 -0.6747770 0.7192898 1
1735  1.302377 -0.6747770 0.7192898 1
1736  1.302377 -0.6747770 0.7192898 2
1737  1.302377 -0.6747770 0.7192898 2
1738  1.302377 -0.6747770 0.7192898 1
1739  1.302377 -0.6747770 0.7192898 1
1740  1.302377 -0.6747770 0.7192898 1
1741  1.302377 -0.6747770 0.7192898 2
1742  1.302377 -0.6747770 0.7192898 2
1743  1.302377 -0.6747770 0.7192898 1
1744  1.302377 -0.6747770 0.7192898 1
1745  1.302377 -0.6747770 0.7192898 1
1746  1.302377 -0.6747770 0.7192898 3
1747  1.302377 -0.6747770 0.7192898 2
1748  1.302377 -0.6747770 0.7192898 3
1749  1.302377 -0.6747770 0.7192898 2
1750  1.302377 -0.6747770 0.7192898 2
1751  1.302377 -0.6747770 0.7192898 2
1752  1.302377 -0.6747770 0.7192898 2
1753  1.302377 -0.6747770 0.7192898 1
1754  1.302377 -0.6747770 0.7192898 1
1755  1.302377 -0.6747770 0.7192898 2
1756  1.302377 -0.6747770 0.7192898 3
1757  1.302377 -0.6747770 0.7192898 1
1758  1.302377 -0.6747770 0.7192898 2
1759  1.302377 -0.6747770 0.7192898 3
1760  1.302377 -0.6747770 0.7192898 3
1761  1.302377 -0.6747770 0.7192898 2
1762  1.302377 -0.6747770 0.7192898 2
1763  1.302377 -0.6747770 0.7192898 2
1764  1.302377 -0.6747770 0.7192898 3
1765  1.302377 -0.6747770 0.7192898 3
1766  1.302377 -0.6747770 0.7192898 1
1767  1.302377 -0.6747770 0.7192898 2
1768  1.302377 -0.6747770 0.7192898 3
1769  1.302377 -0.6747770 0.7192898 1
1770  1.302377 -0.6747770 0.7192898 3
1771  1.302377 -0.6747770 0.7192898 1
1772  1.302377 -0.6747770 0.7192898 3
1773  1.302377 -0.6747770 0.7192898 2
1774  1.302377 -0.6747770 0.7192898 2
1775  1.302377 -0.6747770 0.7192898 3
1776  1.302377 -0.6747770 0.7192898 1
1777  1.302377 -0.6747770 0.7192898 2
1778  1.302377 -0.6747770 0.7192898 2
1779  1.302377 -0.6747770 0.7192898 1
1780  1.302377 -0.6747770 0.7192898 3
1781  1.302377 -0.6747770 0.7192898 3
1782  1.302377 -0.6747770 0.7192898 1
1783  1.302377 -0.6747770 0.7192898 2
1784  1.302377 -0.6747770 0.7192898 2
1785  1.302377 -0.6747770 0.7192898 1
1786  1.302377 -0.6747770 0.7192898 2
1787  1.302377 -0.6747770 0.7192898 2
1788  1.302377 -0.6747770 0.7192898 2
1789  1.302377 -0.6747770 0.7192898 3
1790  1.302377 -0.6747770 0.7192898 1
1791  1.302377 -0.6747770 0.7192898 2
1792  1.302377 -0.6747770 0.7192898 2
1793  1.302377 -0.6747770 0.7192898 2
1794  1.302377 -0.6747770 0.7192898 2
1795  1.302377 -0.6747770 0.7192898 2
1796  1.302377 -0.6747770 0.7192898 2
1797  1.302377 -0.6747770 0.7192898 3
1798  1.302377 -0.6747770 0.7192898 1
1799  1.302377 -0.6747770 0.7192898 3
1800  1.302377 -0.6747770 0.7192898 1
1801  1.302377 -0.6747770 0.7192898 2
1802  1.302377 -0.6747770 0.7192898 3
1803  1.302377 -0.6747770 0.7192898 2
1804  1.302377 -0.6747770 0.7192898 2
1805  1.302377 -0.6747770 0.7192898 3
1806  1.302377 -0.6747770 0.7192898 3
1807  1.302377 -0.6747770 0.7192898 3
1808  1.302377 -0.6747770 0.7192898 1
1809  1.302377 -0.6747770 0.7192898 3
1810  1.302377 -0.6747770 0.7192898 3
1811  1.302377 -0.6747770 0.7192898 1
1812  1.302377 -0.6747770 0.7192898 1
1813  1.302377 -0.6747770 0.7192898 2
1814  1.302377 -0.6747770 0.7192898 1
1815  1.302377 -0.6747770 0.7192898 2
1816  1.302377 -0.6747770 0.7192898 2
1817  1.302377 -0.6747770 0.7192898 1
1818  1.302377 -0.6747770 0.7192898 1
1819  1.302377 -0.6747770 0.7192898 1
1820  1.302377 -0.6747770 0.7192898 3
1821  1.302377 -0.6747770 0.7192898 1
1822  1.302377 -0.6747770 0.7192898 3
1823  1.302377 -0.6747770 0.7192898 2
1824  1.302377 -0.6747770 0.7192898 2
1825  1.302377 -0.6747770 0.7192898 1
1826  1.302377 -0.6747770 0.7192898 2
1827  1.302377 -0.6747770 0.7192898 1
1828  1.302377 -0.6747770 0.7192898 1
1829  1.302377 -0.6747770 0.7192898 2
1830  1.302377 -0.6747770 0.7192898 1
1831  1.302377 -0.6747770 0.7192898 2
1832  1.302377 -0.6747770 0.7192898 1
1833  1.302377 -0.6747770 0.7192898 1
1834  1.302377 -0.6747770 0.7192898 2
1835  1.302377 -0.6747770 0.7192898 1
1836  1.302377 -0.6747770 0.7192898 3
1837  1.302377 -0.6747770 0.7192898 1
1838  1.302377 -0.6747770 0.7192898 1
1839  1.288858 -0.6635292 0.7193517 2
1840  1.288858 -0.6635292 0.7193517 3
1841  1.288858 -0.6635292 0.7193517 1
1842  1.288858 -0.6635292 0.7193517 1
1843  1.288858 -0.6635292 0.7193517 1
1844  1.288858 -0.6635292 0.7193517 3
1845  1.288858 -0.6635292 0.7193517 2
1846  1.288858 -0.6635292 0.7193517 2
1847  1.288858 -0.6635292 0.7193517 1
1848  1.288858 -0.6635292 0.7193517 1
1849  1.288858 -0.6635292 0.7193517 3
1850  1.288858 -0.6635292 0.7193517 1
1851  1.288858 -0.6635292 0.7193517 2
1852  1.288858 -0.6635292 0.7193517 2
1853  1.288858 -0.6635292 0.7193517 2
1854  1.288858 -0.6635292 0.7193517 2
1855  1.288858 -0.6635292 0.7193517 2
1856  1.288858 -0.6635292 0.7193517 2
1857  1.288858 -0.6635292 0.7193517 1
1858  1.288858 -0.6635292 0.7193517 2
1859  1.288858 -0.6635292 0.7193517 1
1860  1.288858 -0.6635292 0.7193517 1
1861  1.288858 -0.6635292 0.7193517 3
1862  1.288858 -0.6635292 0.7193517 1
1863  1.288858 -0.6635292 0.7193517 2
1864  1.288858 -0.6635292 0.7193517 3
1865  1.288858 -0.6635292 0.7193517 3
1866  1.288858 -0.6635292 0.7193517 1
1867  1.288858 -0.6635292 0.7193517 3
1868  1.288858 -0.6635292 0.7193517 2
1869  1.288858 -0.6635292 0.7193517 3
1870  1.288858 -0.6635292 0.7193517 3
1871  1.288858 -0.6635292 0.7193517 1
1872  1.288858 -0.6635292 0.7193517 3
1873  1.288858 -0.6635292 0.7193517 3
1874  1.288858 -0.6635292 0.7193517 1
1875  1.288858 -0.6635292 0.7193517 1
1876  1.288858 -0.6635292 0.7193517 1
1877  1.288858 -0.6635292 0.7193517 1
1878  1.288858 -0.6635292 0.7193517 1
1879  1.288858 -0.6635292 0.7193517 1
1880  1.288858 -0.6635292 0.7193517 1
1881  1.288858 -0.6635292 0.7193517 3
1882  1.288858 -0.6635292 0.7193517 3
1883  1.288858 -0.6635292 0.7193517 2
1884  1.288858 -0.6635292 0.7193517 1
1885  1.288858 -0.6635292 0.7193517 3
1886  1.288858 -0.6635292 0.7193517 3
1887  1.288858 -0.6635292 0.7193517 1
1888  1.288858 -0.6635292 0.7193517 1
1889  1.288858 -0.6635292 0.7193517 1
1890  1.288858 -0.6635292 0.7193517 3
1891  1.288858 -0.6635292 0.7193517 1
1892  1.288858 -0.6635292 0.7193517 1
1893  1.288858 -0.6635292 0.7193517 2
1894  1.288858 -0.6635292 0.7193517 1
1895  1.288858 -0.6635292 0.7193517 1
1896  1.288858 -0.6635292 0.7193517 3
1897  1.288858 -0.6635292 0.7193517 3
1898  1.288858 -0.6635292 0.7193517 2
1899  1.288858 -0.6635292 0.7193517 2
1900  1.288858 -0.6635292 0.7193517 1
1901  1.288858 -0.6635292 0.7193517 3
1902  1.288858 -0.6635292 0.7193517 2
1903  1.288858 -0.6635292 0.7193517 3
1904  1.288858 -0.6635292 0.7193517 3
1905  1.288858 -0.6635292 0.7193517 2
1906  1.288858 -0.6635292 0.7193517 1
1907  1.288858 -0.6635292 0.7193517 1
1908  1.288858 -0.6635292 0.7193517 3
1909  1.288858 -0.6635292 0.7193517 3
1910  1.288858 -0.6635292 0.7193517 3
1911  1.288858 -0.6635292 0.7193517 1
1912  1.288858 -0.6635292 0.7193517 3
1913  1.288858 -0.6635292 0.7193517 2
1914  1.288858 -0.6635292 0.7193517 2
1915  1.288858 -0.6635292 0.7193517 1
1916  1.288858 -0.6635292 0.7193517 2
1917  1.288858 -0.6635292 0.7193517 2
1918  1.288858 -0.6635292 0.7193517 2
1919  1.288858 -0.6635292 0.7193517 2
1920  1.288858 -0.6635292 0.7193517 1
1921  1.288858 -0.6635292 0.7193517 2
1922  1.288858 -0.6635292 0.7193517 3
1923  1.288858 -0.6635292 0.7193517 3
1924  1.288858 -0.6635292 0.7193517 2
1925  1.288858 -0.6635292 0.7193517 3
1926  1.288858 -0.6635292 0.7193517 1
1927  1.288858 -0.6635292 0.7193517 3
1928  1.288858 -0.6635292 0.7193517 1
1929  1.288858 -0.6635292 0.7193517 1
1930  1.288858 -0.6635292 0.7193517 2
1931  1.288858 -0.6635292 0.7193517 1
1932  1.288858 -0.6635292 0.7193517 1
1933  1.288858 -0.6635292 0.7193517 3
1934  1.288858 -0.6635292 0.7193517 3
1935  1.288858 -0.6635292 0.7193517 3
1936  1.288858 -0.6635292 0.7193517 2
1937  1.288858 -0.6635292 0.7193517 2
1938  1.288858 -0.6635292 0.7193517 3
1939  1.288858 -0.6635292 0.7193517 3
1940  1.288858 -0.6635292 0.7193517 1
1941  1.288858 -0.6635292 0.7193517 2
1942  1.288858 -0.6635292 0.7193517 3
1943  1.288858 -0.6635292 0.7193517 3
1944  1.288858 -0.6635292 0.7193517 1
1945  1.288858 -0.6635292 0.7193517 2
1946  1.288858 -0.6635292 0.7193517 2
1947  1.288858 -0.6635292 0.7193517 1
1948  1.288858 -0.6635292 0.7193517 3
1949  1.288858 -0.6635292 0.7193517 1
1950  1.288858 -0.6635292 0.7193517 3
1951  1.288858 -0.6635292 0.7193517 1
1952  1.288858 -0.6635292 0.7193517 1
1953  1.288858 -0.6635292 0.7193517 1
1954  1.288858 -0.6635292 0.7193517 3
1955  1.288858 -0.6635292 0.7193517 3
1956  1.288858 -0.6635292 0.7193517 3
1957  1.288858 -0.6635292 0.7193517 1
1958  1.288858 -0.6635292 0.7193517 3
1959  1.288858 -0.6635292 0.7193517 3
1960  1.288858 -0.6635292 0.7193517 1
1961  1.288858 -0.6635292 0.7193517 1
1962  1.288858 -0.6635292 0.7193517 1
1963  1.288858 -0.6635292 0.7193517 1
1964  1.288858 -0.6635292 0.7193517 2
1965  1.288858 -0.6635292 0.7193517 3
1966  1.288858 -0.6635292 0.7193517 1
1967  1.288858 -0.6635292 0.7193517 1
1968  1.288858 -0.6635292 0.7193517 2
1969  1.288858 -0.6635292 0.7193517 1
1970  1.288858 -0.6635292 0.7193517 2
1971  1.288858 -0.6635292 0.7193517 3
1972  1.288858 -0.6635292 0.7193517 2
1973  1.288858 -0.6635292 0.7193517 1
1974  1.288858 -0.6635292 0.7193517 1
1975  1.288858 -0.6635292 0.7193517 2
1976  1.288858 -0.6635292 0.7193517 3
1977  1.288858 -0.6635292 0.7193517 2
1978  1.288858 -0.6635292 0.7193517 1
1979  1.288858 -0.6635292 0.7193517 2
1980  1.288858 -0.6635292 0.7193517 3
1981  1.288858 -0.6635292 0.7193517 2
1982  1.288858 -0.6635292 0.7193517 3
1983  1.288858 -0.6635292 0.7193517 3
1984  1.288858 -0.6635292 0.7193517 3
1985  1.288858 -0.6635292 0.7193517 1
1986  1.288858 -0.6635292 0.7193517 1
1987  1.288858 -0.6635292 0.7193517 2
1988  1.288858 -0.6635292 0.7193517 2
1989  1.288858 -0.6635292 0.7193517 2
1990  1.288858 -0.6635292 0.7193517 1
1991  1.288858 -0.6635292 0.7193517 1
1992  1.288858 -0.6635292 0.7193517 2
1993  1.288858 -0.6635292 0.7193517 3
1994  1.288858 -0.6635292 0.7193517 1
1995  1.288858 -0.6635292 0.7193517 3
1996  1.288858 -0.6635292 0.7193517 2
1997  1.288858 -0.6635292 0.7193517 2
1998  1.288858 -0.6635292 0.7193517 3
1999  1.288858 -0.6635292 0.7193517 1
2000  1.288858 -0.6635292 0.7193517 1
2001  1.288858 -0.6635292 0.7193517 3
2002  1.288858 -0.6635292 0.7193517 2
2003  1.288858 -0.6635292 0.7193517 2
2004  1.288858 -0.6635292 0.7193517 1
2005  1.288858 -0.6635292 0.7193517 2
2006  1.288858 -0.6635292 0.7193517 1
2007  1.288858 -0.6635292 0.7193517 1
2008  1.288858 -0.6635292 0.7193517 3
2009  1.288858 -0.6635292 0.7193517 1
2010  1.288858 -0.6635292 0.7193517 2
2011  1.288858 -0.6635292 0.7193517 3
2012  1.288858 -0.6635292 0.7193517 2
2013  1.288858 -0.6635292 0.7193517 1
2014  1.288858 -0.6635292 0.7193517 1
2015  1.288858 -0.6635292 0.7193517 3
2016  1.288858 -0.6635292 0.7193517 2
2017  1.288858 -0.6635292 0.7193517 1
2018  1.288858 -0.6635292 0.7193517 2
2019  1.288858 -0.6635292 0.7193517 2
2020  1.288858 -0.6635292 0.7193517 1
2021  1.288858 -0.6635292 0.7193517 3
2022  1.288858 -0.6635292 0.7193517 2
2023  1.288858 -0.6635292 0.7193517 1
2024  1.288858 -0.6635292 0.7193517 1
2025  1.288858 -0.6635292 0.7193517 3
2026  1.288858 -0.6635292 0.7193517 2
2027  1.288858 -0.6635292 0.7193517 3
2028  1.288858 -0.6635292 0.7193517 2
2029  1.288858 -0.6635292 0.7193517 2
2030  1.288858 -0.6635292 0.7193517 2
2031  1.288858 -0.6635292 0.7193517 2
2032  1.288858 -0.6635292 0.7193517 2
2033  1.288858 -0.6635292 0.7193517 2
2034  1.288858 -0.6635292 0.7193517 1
2035  1.288858 -0.6635292 0.7193517 3
2036  1.288858 -0.6635292 0.7193517 1
2037  1.288858 -0.6635292 0.7193517 3
2038  1.288858 -0.6635292 0.7193517 2
2039  1.288858 -0.6635292 0.7193517 3
2040  1.288858 -0.6635292 0.7193517 3
2041  1.288858 -0.6635292 0.7193517 3
2042  1.288858 -0.6635292 0.7193517 2
2043  1.288858 -0.6635292 0.7193517 3
2044  1.288858 -0.6635292 0.7193517 1
2045  1.288858 -0.6635292 0.7193517 1
2046  1.288858 -0.6635292 0.7193517 3
2047  1.288858 -0.6635292 0.7193517 2
2048  1.288858 -0.6635292 0.7193517 2
2049  1.288858 -0.6635292 0.7193517 3
2050  1.288858 -0.6635292 0.7193517 2
2051  1.288858 -0.6635292 0.7193517 1
2052  1.288858 -0.6635292 0.7193517 3
2053  1.288858 -0.6635292 0.7193517 1
2054  1.288858 -0.6635292 0.7193517 2
2055  1.288858 -0.6635292 0.7193517 1
2056  1.288858 -0.6635292 0.7193517 2
2057  1.288858 -0.6635292 0.7193517 3
2058  1.288858 -0.6635292 0.7193517 3
2059  1.288858 -0.6635292 0.7193517 1
2060  1.288858 -0.6635292 0.7193517 2
2061  1.288858 -0.6635292 0.7193517 2
2062  1.288858 -0.6635292 0.7193517 2
2063  1.288858 -0.6635292 0.7193517 3
2064  1.288858 -0.6635292 0.7193517 1
2065  1.288858 -0.6635292 0.7193517 2
2066  1.288858 -0.6635292 0.7193517 1
2067  1.288858 -0.6635292 0.7193517 2
2068  1.288858 -0.6635292 0.7193517 1
2069  1.288858 -0.6635292 0.7193517 1
2070  1.288858 -0.6635292 0.7193517 1
2071  1.288858 -0.6635292 0.7193517 3
2072  1.288858 -0.6635292 0.7193517 2
2073  1.288858 -0.6635292 0.7193517 1
2074  1.288858 -0.6635292 0.7193517 1
2075  1.288858 -0.6635292 0.7193517 1
2076  1.288858 -0.6635292 0.7193517 2
2077  1.288858 -0.6635292 0.7193517 1
2078  1.288858 -0.6635292 0.7193517 2
2079  1.288858 -0.6635292 0.7193517 1
2080  1.288858 -0.6635292 0.7193517 2
2081  1.288858 -0.6635292 0.7193517 3
2082  1.288858 -0.6635292 0.7193517 2
2083  1.288858 -0.6635292 0.7193517 1
2084  1.288858 -0.6635292 0.7193517 1
2085  1.288858 -0.6635292 0.7193517 2
2086  1.288858 -0.6635292 0.7193517 3
2087  1.288858 -0.6635292 0.7193517 1
2088  1.288858 -0.6635292 0.7193517 2
2089  1.288858 -0.6635292 0.7193517 2
2090  1.288858 -0.6635292 0.7193517 3
2091  1.288858 -0.6635292 0.7193517 3
2092  1.288858 -0.6635292 0.7193517 1
2093  1.288858 -0.6635292 0.7193517 3
2094  1.288858 -0.6635292 0.7193517 3
2095  1.288858 -0.6635292 0.7193517 3
2096  1.288858 -0.6635292 0.7193517 2
2097  1.288858 -0.6635292 0.7193517 1
2098  1.288858 -0.6635292 0.7193517 3
2099  1.288858 -0.6635292 0.7193517 2
2100  1.288858 -0.6635292 0.7193517 3
2101  1.288858 -0.6635292 0.7193517 3
2102  1.288858 -0.6635292 0.7193517 2
2103  1.288858 -0.6635292 0.7193517 1
2104  1.288858 -0.6635292 0.7193517 2
2105  1.288858 -0.6635292 0.7193517 1
2106  1.288858 -0.6635292 0.7193517 1
2107  1.288858 -0.6635292 0.7193517 3
2108  1.288858 -0.6635292 0.7193517 1
2109  1.288858 -0.6635292 0.7193517 3
2110  1.288858 -0.6635292 0.7193517 1
2111  1.288858 -0.6635292 0.7193517 2
2112  1.288858 -0.6635292 0.7193517 3
2113  1.288858 -0.6635292 0.7193517 2
2114  1.288858 -0.6635292 0.7193517 2
2115  1.288858 -0.6635292 0.7193517 1
2116  1.288858 -0.6635292 0.7193517 1
2117  1.288858 -0.6635292 0.7193517 3
2118  1.288858 -0.6635292 0.7193517 3
2119  1.288858 -0.6635292 0.7193517 1
2120  1.288858 -0.6635292 0.7193517 2
2121  1.288858 -0.6635292 0.7193517 3
2122  1.288858 -0.6635292 0.7193517 3
2123  1.288858 -0.6635292 0.7193517 1
2124  1.288858 -0.6635292 0.7193517 1
2125  1.288858 -0.6635292 0.7193517 3
2126  1.288858 -0.6635292 0.7193517 2
2127  1.288858 -0.6635292 0.7193517 3
2128  1.288858 -0.6635292 0.7193517 3
2129  1.288858 -0.6635292 0.7193517 2
2130  1.288858 -0.6635292 0.7193517 2
2131  1.288858 -0.6635292 0.7193517 3
2132  1.288858 -0.6635292 0.7193517 2
2133  1.288858 -0.6635292 0.7193517 2
2134  1.288858 -0.6635292 0.7193517 2
2135  1.288858 -0.6635292 0.7193517 2
2136  1.288858 -0.6635292 0.7193517 2
2137  1.288858 -0.6635292 0.7193517 2
2138  1.288858 -0.6635292 0.7193517 1
2139  1.288858 -0.6635292 0.7193517 1
2140  1.288858 -0.6635292 0.7193517 1
2141  1.288858 -0.6635292 0.7193517 1
2142  1.288858 -0.6635292 0.7193517 1
2143  1.288858 -0.6635292 0.7193517 1
2144  1.288858 -0.6635292 0.7193517 2
2145  1.288858 -0.6635292 0.7193517 1
2146  1.288858 -0.6635292 0.7193517 2
2147  1.288858 -0.6635292 0.7193517 3
2148  1.288858 -0.6635292 0.7193517 1
2149  1.288858 -0.6635292 0.7193517 1
2150  1.288858 -0.6635292 0.7193517 2
2151  1.288858 -0.6635292 0.7193517 2
2152  1.288858 -0.6635292 0.7193517 3
2153  1.288858 -0.6635292 0.7193517 1
2154  1.288858 -0.6635292 0.7193517 1
2155  1.288858 -0.6635292 0.7193517 2
2156  1.288858 -0.6635292 0.7193517 1
2157  1.288858 -0.6635292 0.7193517 3
2158  1.288858 -0.6635292 0.7193517 3
2159  1.288858 -0.6635292 0.7193517 1
2160  1.288858 -0.6635292 0.7193517 2
2161  1.288858 -0.6635292 0.7193517 2
2162  1.288858 -0.6635292 0.7193517 2
2163  1.288858 -0.6635292 0.7193517 2
2164  1.288858 -0.6635292 0.7193517 2
2165  1.288858 -0.6635292 0.7193517 2
2166  1.288858 -0.6635292 0.7193517 3
2167  1.288858 -0.6635292 0.7193517 3
2168  1.288858 -0.6635292 0.7193517 2
2169  1.288858 -0.6635292 0.7193517 3
2170  1.288858 -0.6635292 0.7193517 1
2171  1.288858 -0.6635292 0.7193517 3
2172  1.288858 -0.6635292 0.7193517 3
2173  1.288858 -0.6635292 0.7193517 3
2174  1.288858 -0.6635292 0.7193517 3
2175  1.288858 -0.6635292 0.7193517 3
2176  1.288858 -0.6635292 0.7193517 1
2177  1.288858 -0.6635292 0.7193517 3
2178  1.288858 -0.6635292 0.7193517 2
2179  1.288858 -0.6635292 0.7193517 1
2180  1.288858 -0.6635292 0.7193517 2
2181  1.288858 -0.6635292 0.7193517 3
2182  1.288858 -0.6635292 0.7193517 1
2183  1.288858 -0.6635292 0.7193517 2
2184  1.288858 -0.6635292 0.7193517 1
2185  1.288858 -0.6635292 0.7193517 2
2186  1.288858 -0.6635292 0.7193517 3
2187  1.288858 -0.6635292 0.7193517 3
2188  1.288858 -0.6635292 0.7193517 1
2189  1.288858 -0.6635292 0.7193517 3
2190  1.288858 -0.6635292 0.7193517 3
2191  1.288858 -0.6635292 0.7193517 1
2192  1.288858 -0.6635292 0.7193517 3
2193  1.288858 -0.6635292 0.7193517 3
2194  1.288858 -0.6635292 0.7193517 1
2195  1.288858 -0.6635292 0.7193517 1
2196  1.288858 -0.6635292 0.7193517 3
2197  1.288858 -0.6635292 0.7193517 3
2198  1.288858 -0.6635292 0.7193517 2
2199  1.288858 -0.6635292 0.7193517 3
2200  1.288858 -0.6635292 0.7193517 1
2201  1.288858 -0.6635292 0.7193517 3
2202  1.288858 -0.6635292 0.7193517 3
2203  1.288858 -0.6635292 0.7193517 1
2204  1.288858 -0.6635292 0.7193517 1
2205  1.288858 -0.6635292 0.7193517 2
2206  1.288858 -0.6635292 0.7193517 2
2207  1.288858 -0.6635292 0.7193517 2
2208  1.288858 -0.6635292 0.7193517 2
2209  1.288858 -0.6635292 0.7193517 2
2210  1.288858 -0.6635292 0.7193517 2
2211  1.288858 -0.6635292 0.7193517 1
2212  1.288858 -0.6635292 0.7193517 3
2213  1.288858 -0.6635292 0.7193517 2
2214  1.288858 -0.6635292 0.7193517 3
2215  1.288858 -0.6635292 0.7193517 1
2216  1.288858 -0.6635292 0.7193517 2
2217  1.288858 -0.6635292 0.7193517 3
2218  1.288858 -0.6635292 0.7193517 3
2219  1.288858 -0.6635292 0.7193517 2
2220  1.288858 -0.6635292 0.7193517 3
2221  1.288858 -0.6635292 0.7193517 2
2222  1.288858 -0.6635292 0.7193517 3
2223  1.288858 -0.6635292 0.7193517 1
2224  1.288858 -0.6635292 0.7193517 1
2225  1.288858 -0.6635292 0.7193517 3
2226  1.288858 -0.6635292 0.7193517 1
2227  1.288858 -0.6635292 0.7193517 3
2228  1.288858 -0.6635292 0.7193517 1
2229  1.288858 -0.6635292 0.7193517 1
2230  1.288858 -0.6635292 0.7193517 1
2231  1.288858 -0.6635292 0.7193517 3
2232  1.288858 -0.6635292 0.7193517 1
2233  1.288858 -0.6635292 0.7193517 2
2234  1.288858 -0.6635292 0.7193517 3
2235  1.288858 -0.6635292 0.7193517 3
2236  1.288858 -0.6635292 0.7193517 3
2237  1.288858 -0.6635292 0.7193517 2
2238  1.288858 -0.6635292 0.7193517 1
2239  1.288858 -0.6635292 0.7193517 3
2240  1.288858 -0.6635292 0.7193517 1
2241  1.288858 -0.6635292 0.7193517 3
2242  1.288858 -0.6635292 0.7193517 3
2243  1.288858 -0.6635292 0.7193517 2
2244  1.288858 -0.6635292 0.7193517 2
2245  1.288858 -0.6635292 0.7193517 2
2246  1.288858 -0.6635292 0.7193517 2
2247  1.288858 -0.6635292 0.7193517 2
2248  1.288858 -0.6635292 0.7193517 1
2249  1.288858 -0.6635292 0.7193517 2
2250  1.288858 -0.6635292 0.7193517 1
2251  1.288858 -0.6635292 0.7193517 2
2252  1.288858 -0.6635292 0.7193517 3
2253  1.288858 -0.6635292 0.7193517 2
2254  1.288858 -0.6635292 0.7193517 1
2255  1.288858 -0.6635292 0.7193517 1
2256  1.288858 -0.6635292 0.7193517 1
2257  1.288858 -0.6635292 0.7193517 2
2258  1.288858 -0.6635292 0.7193517 3
2259  1.288858 -0.6635292 0.7193517 1
2260  1.288858 -0.6635292 0.7193517 1
2261  1.288858 -0.6635292 0.7193517 1
2262  1.288858 -0.6635292 0.7193517 1
2263  1.288858 -0.6635292 0.7193517 3
2264  1.288858 -0.6635292 0.7193517 2
2265  1.288858 -0.6635292 0.7193517 3
2266  1.288858 -0.6635292 0.7193517 3
2267  1.288858 -0.6635292 0.7193517 2
2268  1.288858 -0.6635292 0.7193517 2
2269  1.288858 -0.6635292 0.7193517 2
2270  1.288858 -0.6635292 0.7193517 1
2271  1.288858 -0.6635292 0.7193517 2
2272  1.288858 -0.6635292 0.7193517 1
2273  1.288858 -0.6635292 0.7193517 1
2274  1.288858 -0.6635292 0.7193517 3
2275  1.288858 -0.6635292 0.7193517 1
2276  1.288858 -0.6635292 0.7193517 2
2277  1.288858 -0.6635292 0.7193517 2
2278  1.288858 -0.6635292 0.7193517 3
2279  1.288858 -0.6635292 0.7193517 2
2280  1.288858 -0.6635292 0.7193517 3
2281  1.288858 -0.6635292 0.7193517 3
2282  1.288858 -0.6635292 0.7193517 1
2283  1.288858 -0.6635292 0.7193517 3
2284  1.288858 -0.6635292 0.7193517 1
2285  1.288858 -0.6635292 0.7193517 2
2286  1.288858 -0.6635292 0.7193517 1
2287  1.288858 -0.6635292 0.7193517 3
2288  1.288858 -0.6635292 0.7193517 2
2289  1.288858 -0.6635292 0.7193517 2
2290  1.288858 -0.6635292 0.7193517 1
2291  1.288858 -0.6635292 0.7193517 3
2292  1.288858 -0.6635292 0.7193517 2
2293  1.288858 -0.6635292 0.7193517 1
2294  1.288858 -0.6635292 0.7193517 1
2295  1.288858 -0.6635292 0.7193517 2
2296  1.288858 -0.6635292 0.7193517 1
2297  1.288858 -0.6635292 0.7193517 2
2298  1.288858 -0.6635292 0.7193517 1
2299  1.288858 -0.6635292 0.7193517 1
2300  1.288858 -0.6635292 0.7193517 3
2301  1.288858 -0.6635292 0.7193517 1
2302  1.288858 -0.6635292 0.7193517 1
2303  1.288858 -0.6635292 0.7193517 3
2304  1.288858 -0.6635292 0.7193517 1
2305  1.288858 -0.6635292 0.7193517 3
2306  1.288858 -0.6635292 0.7193517 1
2307  1.288858 -0.6635292 0.7193517 3
2308  1.288858 -0.6635292 0.7193517 3
2309  1.288858 -0.6635292 0.7193517 3
2310  1.288858 -0.6635292 0.7193517 3
2311  1.288858 -0.6635292 0.7193517 3
2312  1.288858 -0.6635292 0.7193517 1
2313  1.288858 -0.6635292 0.7193517 3
2314  1.288858 -0.6635292 0.7193517 1
2315  1.288858 -0.6635292 0.7193517 3
2316  1.288858 -0.6635292 0.7193517 1
2317  1.288858 -0.6635292 0.7193517 3
2318  1.288858 -0.6635292 0.7193517 3
2319  1.288858 -0.6635292 0.7193517 3
2320  1.288858 -0.6635292 0.7193517 1
2321  1.288858 -0.6635292 0.7193517 1
2322  1.288858 -0.6635292 0.7193517 3
2323  1.288858 -0.6635292 0.7193517 1
2324  1.288858 -0.6635292 0.7193517 3
2325  1.288858 -0.6635292 0.7193517 1
2326  1.288858 -0.6635292 0.7193517 1
2327  1.288858 -0.6635292 0.7193517 1
2328  1.288858 -0.6635292 0.7193517 1
2329  1.288858 -0.6635292 0.7193517 2
2330  1.288858 -0.6635292 0.7193517 1
2331  1.288858 -0.6635292 0.7193517 1
2332  1.288858 -0.6635292 0.7193517 1
2333  1.288858 -0.6635292 0.7193517 1
2334  1.288858 -0.6635292 0.7193517 3
2335  1.288858 -0.6635292 0.7193517 2
2336  1.288858 -0.6635292 0.7193517 1
2337  1.288858 -0.6635292 0.7193517 1
2338  1.288858 -0.6635292 0.7193517 2
2339  1.288858 -0.6635292 0.7193517 1
2340  1.288858 -0.6635292 0.7193517 1
2341  1.288858 -0.6635292 0.7193517 3
2342  1.288858 -0.6635292 0.7193517 1
2343  1.288858 -0.6635292 0.7193517 3
2344  1.288858 -0.6635292 0.7193517 1
2345  1.288858 -0.6635292 0.7193517 3
2346  1.288858 -0.6635292 0.7193517 3
2347  1.288858 -0.6635292 0.7193517 1
2348  1.288858 -0.6635292 0.7193517 2
2349  1.288858 -0.6635292 0.7193517 3
2350  1.288858 -0.6635292 0.7193517 3
2351  1.288858 -0.6635292 0.7193517 1
2352  1.288858 -0.6635292 0.7193517 1
2353  1.288858 -0.6635292 0.7193517 1
2354  1.288858 -0.6635292 0.7193517 2
2355  1.288858 -0.6635292 0.7193517 3
2356  1.288858 -0.6635292 0.7193517 2
2357  1.288858 -0.6635292 0.7193517 2
2358  1.288858 -0.6635292 0.7193517 3
2359  1.288858 -0.6635292 0.7193517 2
2360  1.288858 -0.6635292 0.7193517 3
2361  1.288858 -0.6635292 0.7193517 2
2362  1.288858 -0.6635292 0.7193517 3
2363  1.288858 -0.6635292 0.7193517 3
2364  1.288858 -0.6635292 0.7193517 2
2365  1.288858 -0.6635292 0.7193517 3
2366  1.288858 -0.6635292 0.7193517 1
2367  1.288858 -0.6635292 0.7193517 3
2368  1.288858 -0.6635292 0.7193517 3
2369  1.288858 -0.6635292 0.7193517 1
2370  1.288858 -0.6635292 0.7193517 2
2371  1.288858 -0.6635292 0.7193517 2
2372  1.288858 -0.6635292 0.7193517 1
2373  1.288858 -0.6635292 0.7193517 2
2374  1.288858 -0.6635292 0.7193517 2
2375  1.288858 -0.6635292 0.7193517 3
2376  1.288858 -0.6635292 0.7193517 3
2377  1.288858 -0.6635292 0.7193517 3
2378  1.288858 -0.6635292 0.7193517 1
2379  1.288858 -0.6635292 0.7193517 1
2380  1.288858 -0.6635292 0.7193517 2
2381  1.288858 -0.6635292 0.7193517 1
2382  1.288858 -0.6635292 0.7193517 2
2383  1.288858 -0.6635292 0.7193517 2
2384  1.288858 -0.6635292 0.7193517 2
2385  1.288858 -0.6635292 0.7193517 3
2386  1.288858 -0.6635292 0.7193517 1
2387  1.288858 -0.6635292 0.7193517 3
2388  1.288858 -0.6635292 0.7193517 3
2389  1.288858 -0.6635292 0.7193517 3
2390  1.288858 -0.6635292 0.7193517 1
2391  1.288858 -0.6635292 0.7193517 2
2392  1.288858 -0.6635292 0.7193517 3
2393  1.288858 -0.6635292 0.7193517 3
2394  1.288858 -0.6635292 0.7193517 1
2395  1.288858 -0.6635292 0.7193517 2
2396  1.288858 -0.6635292 0.7193517 2
2397  1.288858 -0.6635292 0.7193517 3
2398  1.288858 -0.6635292 0.7193517 2
2399  1.288858 -0.6635292 0.7193517 1
2400  1.288858 -0.6635292 0.7193517 2
2401  1.288858 -0.6635292 0.7193517 2
2402  1.288858 -0.6635292 0.7193517 2
2403  1.288858 -0.6635292 0.7193517 1
2404  1.288858 -0.6635292 0.7193517 1
2405  1.288858 -0.6635292 0.7193517 3
2406  1.288858 -0.6635292 0.7193517 2
2407  1.288858 -0.6635292 0.7193517 1
2408  1.288858 -0.6635292 0.7193517 3
2409  1.288858 -0.6635292 0.7193517 2
2410  1.288858 -0.6635292 0.7193517 1
2411  1.288858 -0.6635292 0.7193517 3
2412  1.288858 -0.6635292 0.7193517 1
2413  1.288858 -0.6635292 0.7193517 3
2414  1.288858 -0.6635292 0.7193517 1
2415  1.288858 -0.6635292 0.7193517 1
2416  1.288858 -0.6635292 0.7193517 3
2417  1.288858 -0.6635292 0.7193517 1
2418  1.288858 -0.6635292 0.7193517 1
2419  1.288858 -0.6635292 0.7193517 1
2420  1.288858 -0.6635292 0.7193517 2
2421  1.288858 -0.6635292 0.7193517 1
2422  1.288858 -0.6635292 0.7193517 2
2423  1.288858 -0.6635292 0.7193517 2
2424  1.288858 -0.6635292 0.7193517 1
2425  1.288858 -0.6635292 0.7193517 2
2426  1.288858 -0.6635292 0.7193517 1
2427  1.288858 -0.6635292 0.7193517 2
2428  1.288858 -0.6635292 0.7193517 1
2429  1.288858 -0.6635292 0.7193517 1
2430  1.288858 -0.6635292 0.7193517 1
2431  1.288858 -0.6635292 0.7193517 3
2432  1.288858 -0.6635292 0.7193517 2
2433  1.288858 -0.6635292 0.7193517 3
2434  1.288858 -0.6635292 0.7193517 3
2435  1.288858 -0.6635292 0.7193517 2
2436  1.288858 -0.6635292 0.7193517 1
2437  1.288858 -0.6635292 0.7193517 2
2438  1.288858 -0.6635292 0.7193517 2
2439  1.288858 -0.6635292 0.7193517 2
2440  1.288858 -0.6635292 0.7193517 3
2441  1.288858 -0.6635292 0.7193517 3
2442  1.288858 -0.6635292 0.7193517 3
2443  1.288858 -0.6635292 0.7193517 3
2444  1.288858 -0.6635292 0.7193517 2
2445  1.288858 -0.6635292 0.7193517 3
2446  1.288858 -0.6635292 0.7193517 2
2447  1.288858 -0.6635292 0.7193517 2
2448  1.288858 -0.6635292 0.7193517 2
2449  1.288858 -0.6635292 0.7193517 3
2450  1.288858 -0.6635292 0.7193517 3
2451  1.288858 -0.6635292 0.7193517 3
2452  1.288858 -0.6635292 0.7193517 3
2453  1.288858 -0.6635292 0.7193517 2
2454  1.288858 -0.6635292 0.7193517 3
2455  1.288858 -0.6635292 0.7193517 2
2456  1.288858 -0.6635292 0.7193517 3
2457  1.288858 -0.6635292 0.7193517 2
2458  1.288858 -0.6635292 0.7193517 3
2459  1.288858 -0.6635292 0.7193517 2
2460  1.288858 -0.6635292 0.7193517 1
2461  1.288858 -0.6635292 0.7193517 1
2462  1.288858 -0.6635292 0.7193517 3
2463  1.288858 -0.6635292 0.7193517 3
2464  1.288858 -0.6635292 0.7193517 3
2465  1.288858 -0.6635292 0.7193517 2
2466  1.288858 -0.6635292 0.7193517 3
2467  1.288858 -0.6635292 0.7193517 1
2468  1.288858 -0.6635292 0.7193517 2
2469  1.288858 -0.6635292 0.7193517 2
2470  1.288858 -0.6635292 0.7193517 1
2471  1.288858 -0.6635292 0.7193517 3
2472  1.288858 -0.6635292 0.7193517 1
2473  1.288858 -0.6635292 0.7193517 3
2474  1.288858 -0.6635292 0.7193517 1
2475  1.288858 -0.6635292 0.7193517 1
2476  1.288858 -0.6635292 0.7193517 2
2477  1.288858 -0.6635292 0.7193517 2
2478  1.288858 -0.6635292 0.7193517 1
2479  1.288858 -0.6635292 0.7193517 2
2480  1.288858 -0.6635292 0.7193517 1
2481  1.288858 -0.6635292 0.7193517 3
2482  1.288858 -0.6635292 0.7193517 3
2483  1.288858 -0.6635292 0.7193517 2
2484  1.288858 -0.6635292 0.7193517 2
2485  1.288858 -0.6635292 0.7193517 3
2486  1.288858 -0.6635292 0.7193517 3
2487  1.288858 -0.6635292 0.7193517 3
2488  1.288858 -0.6635292 0.7193517 2
2489  1.288858 -0.6635292 0.7193517 1
2490  1.288858 -0.6635292 0.7193517 3
2491  1.288858 -0.6635292 0.7193517 3
2492  1.288858 -0.6635292 0.7193517 1
2493  1.288858 -0.6635292 0.7193517 1
2494  1.288858 -0.6635292 0.7193517 2
2495  1.288858 -0.6635292 0.7193517 2
2496  1.288858 -0.6635292 0.7193517 2
2497  1.288858 -0.6635292 0.7193517 1
2498  1.288858 -0.6635292 0.7193517 1
2499  1.288858 -0.6635292 0.7193517 3
2500  1.288858 -0.6635292 0.7193517 2
2501  1.288858 -0.6635292 0.7193517 3
2502  1.288858 -0.6635292 0.7193517 1
2503  1.288858 -0.6635292 0.7193517 2
2504  1.288858 -0.6635292 0.7193517 1
2505  1.288858 -0.6635292 0.7193517 1
2506  1.288858 -0.6635292 0.7193517 1
2507  1.288858 -0.6635292 0.7193517 1
2508  1.288858 -0.6635292 0.7193517 1
2509  1.288858 -0.6635292 0.7193517 3
2510  1.288858 -0.6635292 0.7193517 2
2511  1.288858 -0.6635292 0.7193517 2
2512  1.288858 -0.6635292 0.7193517 1
2513  1.288858 -0.6635292 0.7193517 2
2514  1.288858 -0.6635292 0.7193517 2
2515  1.288858 -0.6635292 0.7193517 2
2516  1.288858 -0.6635292 0.7193517 3
2517  1.288858 -0.6635292 0.7193517 1
2518  1.288858 -0.6635292 0.7193517 2
2519  1.288858 -0.6635292 0.7193517 1
2520  1.288858 -0.6635292 0.7193517 2
2521  1.288858 -0.6635292 0.7193517 3
2522  1.288858 -0.6635292 0.7193517 1
2523  1.288858 -0.6635292 0.7193517 2
2524  1.288858 -0.6635292 0.7193517 1
2525  1.288858 -0.6635292 0.7193517 1
2526  1.288858 -0.6635292 0.7193517 1
2527  1.288858 -0.6635292 0.7193517 1
2528  1.288858 -0.6635292 0.7193517 1
2529  1.288858 -0.6635292 0.7193517 1
2530  1.288858 -0.6635292 0.7193517 1
2531  1.288858 -0.6635292 0.7193517 2
2532  1.288858 -0.6635292 0.7193517 2
2533  1.288858 -0.6635292 0.7193517 2
2534  1.288858 -0.6635292 0.7193517 1
2535  1.288858 -0.6635292 0.7193517 2
2536  1.288858 -0.6635292 0.7193517 2
2537  1.288858 -0.6635292 0.7193517 3
2538  1.288858 -0.6635292 0.7193517 2
2539  1.288858 -0.6635292 0.7193517 1
2540  1.288858 -0.6635292 0.7193517 3
2541  1.288858 -0.6635292 0.7193517 3
2542  1.288858 -0.6635292 0.7193517 2
2543  1.288858 -0.6635292 0.7193517 2
2544  1.288858 -0.6635292 0.7193517 2
2545  1.288858 -0.6635292 0.7193517 2
2546  1.288858 -0.6635292 0.7193517 1
2547  1.288858 -0.6635292 0.7193517 1
2548  1.288858 -0.6635292 0.7193517 1
2549  1.288858 -0.6635292 0.7193517 1
2550  1.288858 -0.6635292 0.7193517 3
2551  1.288858 -0.6635292 0.7193517 1
2552  1.288858 -0.6635292 0.7193517 3
2553  1.288858 -0.6635292 0.7193517 1
2554  1.288858 -0.6635292 0.7193517 3
2555  1.288858 -0.6635292 0.7193517 1
2556  1.288858 -0.6635292 0.7193517 1
2557  1.288858 -0.6635292 0.7193517 3
2558  1.288858 -0.6635292 0.7193517 2
2559  1.288858 -0.6635292 0.7193517 3
2560  1.288858 -0.6635292 0.7193517 3
2561  1.288858 -0.6635292 0.7193517 2
2562  1.288858 -0.6635292 0.7193517 3
2563  1.288858 -0.6635292 0.7193517 1
2564  1.288858 -0.6635292 0.7193517 1
2565  1.288858 -0.6635292 0.7193517 1
2566  1.288858 -0.6635292 0.7193517 1
2567  1.288858 -0.6635292 0.7193517 2
2568  1.288858 -0.6635292 0.7193517 1
2569  1.288858 -0.6635292 0.7193517 1
2570  1.288858 -0.6635292 0.7193517 3
2571  1.288858 -0.6635292 0.7193517 2
2572  1.288858 -0.6635292 0.7193517 3
2573  1.288858 -0.6635292 0.7193517 1
2574  1.288858 -0.6635292 0.7193517 3
2575  1.288858 -0.6635292 0.7193517 1
2576  1.288858 -0.6635292 0.7193517 2
2577  1.288858 -0.6635292 0.7193517 3
2578  1.288858 -0.6635292 0.7193517 1
2579  1.288858 -0.6635292 0.7193517 1
2580  1.288858 -0.6635292 0.7193517 1
2581  1.288858 -0.6635292 0.7193517 1
2582  1.288858 -0.6635292 0.7193517 3
2583  1.288858 -0.6635292 0.7193517 1
2584  1.288858 -0.6635292 0.7193517 2
2585  1.288858 -0.6635292 0.7193517 1
2586  1.288858 -0.6635292 0.7193517 3
2587  1.288858 -0.6635292 0.7193517 1
2588  1.288858 -0.6635292 0.7193517 2
2589  1.288858 -0.6635292 0.7193517 1
2590  1.288858 -0.6635292 0.7193517 1
2591  1.288858 -0.6635292 0.7193517 2
2592  1.288858 -0.6635292 0.7193517 2
2593  1.288858 -0.6635292 0.7193517 2
2594  1.288858 -0.6635292 0.7193517 3
2595  1.288858 -0.6635292 0.7193517 2
2596  1.288858 -0.6635292 0.7193517 3
2597  1.288858 -0.6635292 0.7193517 2
2598  1.288858 -0.6635292 0.7193517 1
2599  1.288858 -0.6635292 0.7193517 3
2600  1.288858 -0.6635292 0.7193517 2
2601  1.288858 -0.6635292 0.7193517 2
2602  1.288858 -0.6635292 0.7193517 1
2603  1.288858 -0.6635292 0.7193517 2
2604  1.288858 -0.6635292 0.7193517 3
2605  1.288858 -0.6635292 0.7193517 3
2606  1.288858 -0.6635292 0.7193517 1
2607  1.288858 -0.6635292 0.7193517 1
2608  1.288858 -0.6635292 0.7193517 3
2609  1.288858 -0.6635292 0.7193517 1
2610  1.288858 -0.6635292 0.7193517 1
2611  1.288858 -0.6635292 0.7193517 1
2612  1.288858 -0.6635292 0.7193517 1
2613  1.288858 -0.6635292 0.7193517 1
2614  1.288858 -0.6635292 0.7193517 2
2615  1.288858 -0.6635292 0.7193517 3
2616  1.288858 -0.6635292 0.7193517 3
2617  1.288858 -0.6635292 0.7193517 3
2618  1.288858 -0.6635292 0.7193517 3
2619  1.288858 -0.6635292 0.7193517 3
2620  1.288858 -0.6635292 0.7193517 1
2621  1.288858 -0.6635292 0.7193517 3
2622  1.288858 -0.6635292 0.7193517 2
2623  1.288858 -0.6635292 0.7193517 1
2624  1.288858 -0.6635292 0.7193517 1
2625  1.288858 -0.6635292 0.7193517 2
2626  1.288858 -0.6635292 0.7193517 3
2627  1.288858 -0.6635292 0.7193517 3
2628  1.288858 -0.6635292 0.7193517 2
2629  1.288858 -0.6635292 0.7193517 1
2630  1.288858 -0.6635292 0.7193517 2
2631  1.288858 -0.6635292 0.7193517 2
2632  1.288858 -0.6635292 0.7193517 1
2633  1.288858 -0.6635292 0.7193517 2
2634  1.288858 -0.6635292 0.7193517 2
2635  1.288858 -0.6635292 0.7193517 2
2636  1.288858 -0.6635292 0.7193517 2
2637  1.288858 -0.6635292 0.7193517 3
2638  1.288858 -0.6635292 0.7193517 1
2639  1.288858 -0.6635292 0.7193517 1
2640  1.288858 -0.6635292 0.7193517 1
2641  1.288858 -0.6635292 0.7193517 2
2642  1.288858 -0.6635292 0.7193517 1
2643  1.288858 -0.6635292 0.7193517 2
2644  1.288858 -0.6635292 0.7193517 1
2645  1.288858 -0.6635292 0.7193517 3
2646  1.288858 -0.6635292 0.7193517 3
2647  1.288858 -0.6635292 0.7193517 3
2648  1.288858 -0.6635292 0.7193517 1
2649  1.288858 -0.6635292 0.7193517 2
2650  1.288858 -0.6635292 0.7193517 2
2651  1.288858 -0.6635292 0.7193517 1
2652  1.288858 -0.6635292 0.7193517 3
2653  1.288858 -0.6635292 0.7193517 1
2654  1.288858 -0.6635292 0.7193517 2
2655  1.288858 -0.6635292 0.7193517 2
2656  1.288858 -0.6635292 0.7193517 3
2657  1.288858 -0.6635292 0.7193517 1
2658  1.288858 -0.6635292 0.7193517 3
2659  1.288858 -0.6635292 0.7193517 2
2660  1.288858 -0.6635292 0.7193517 2
2661  1.288858 -0.6635292 0.7193517 3
2662  1.288858 -0.6635292 0.7193517 3
2663  1.288858 -0.6635292 0.7193517 2
2664  1.288858 -0.6635292 0.7193517 3
2665  1.288858 -0.6635292 0.7193517 2
2666  1.288858 -0.6635292 0.7193517 3
2667  1.288858 -0.6635292 0.7193517 1
2668  1.288858 -0.6635292 0.7193517 1
2669  1.288858 -0.6635292 0.7193517 3
2670  1.288858 -0.6635292 0.7193517 2
2671  1.288858 -0.6635292 0.7193517 1
2672  1.288858 -0.6635292 0.7193517 3
2673  1.288858 -0.6635292 0.7193517 1
2674  1.288858 -0.6635292 0.7193517 2
2675  1.288858 -0.6635292 0.7193517 1
2676  1.288858 -0.6635292 0.7193517 1
2677  1.288858 -0.6635292 0.7193517 3
2678  1.288858 -0.6635292 0.7193517 1
2679  1.288858 -0.6635292 0.7193517 2
2680  1.288858 -0.6635292 0.7193517 1
2681  1.288858 -0.6635292 0.7193517 3
2682  1.288858 -0.6635292 0.7193517 1
2683  1.288858 -0.6635292 0.7193517 3
2684  1.288858 -0.6635292 0.7193517 2
2685  1.288858 -0.6635292 0.7193517 1
2686  1.288858 -0.6635292 0.7193517 3
2687  1.288858 -0.6635292 0.7193517 2
2688  1.288858 -0.6635292 0.7193517 1
2689  1.288858 -0.6635292 0.7193517 2
2690  1.288858 -0.6635292 0.7193517 3
2691  1.288858 -0.6635292 0.7193517 2
2692  1.288858 -0.6635292 0.7193517 1
2693  1.288858 -0.6635292 0.7193517 2
2694  1.288858 -0.6635292 0.7193517 3
2695  1.288858 -0.6635292 0.7193517 1
2696  1.288858 -0.6635292 0.7193517 2
2697  1.288858 -0.6635292 0.7193517 2
2698  1.288858 -0.6635292 0.7193517 3
2699  1.288858 -0.6635292 0.7193517 3
2700  1.288858 -0.6635292 0.7193517 1
2701  1.288858 -0.6635292 0.7193517 1
2702  1.288858 -0.6635292 0.7193517 1
2703  1.288858 -0.6635292 0.7193517 3
2704  1.288858 -0.6635292 0.7193517 2
2705  1.288858 -0.6635292 0.7193517 3
2706  1.288858 -0.6635292 0.7193517 3
2707  1.288858 -0.6635292 0.7193517 3
2708  1.288858 -0.6635292 0.7193517 2
2709  1.288858 -0.6635292 0.7193517 3
2710  1.288858 -0.6635292 0.7193517 2
2711  1.288858 -0.6635292 0.7193517 2
2712  1.288858 -0.6635292 0.7193517 2
2713  1.288858 -0.6635292 0.7193517 1
2714  1.288858 -0.6635292 0.7193517 1
2715  1.288858 -0.6635292 0.7193517 2
2716  1.288858 -0.6635292 0.7193517 1
2717  1.288858 -0.6635292 0.7193517 2
2718  1.288858 -0.6635292 0.7193517 2
2719  1.288858 -0.6635292 0.7193517 3
2720  1.288858 -0.6635292 0.7193517 2
2721  1.288858 -0.6635292 0.7193517 3
2722  1.288858 -0.6635292 0.7193517 1
2723  1.288858 -0.6635292 0.7193517 1
2724  1.288858 -0.6635292 0.7193517 2
2725  1.288858 -0.6635292 0.7193517 2
2726  1.288858 -0.6635292 0.7193517 1
2727  1.288858 -0.6635292 0.7193517 1
2728  1.288858 -0.6635292 0.7193517 1
2729  1.288858 -0.6635292 0.7193517 2
2730  1.288858 -0.6635292 0.7193517 2
2731  1.288858 -0.6635292 0.7193517 1
2732  1.288858 -0.6635292 0.7193517 3
2733  1.288858 -0.6635292 0.7193517 1
2734  1.288858 -0.6635292 0.7193517 2
2735  1.288858 -0.6635292 0.7193517 1
2736  1.288858 -0.6635292 0.7193517 3
2737  1.288858 -0.6635292 0.7193517 1
2738  1.288858 -0.6635292 0.7193517 3
2739  1.288858 -0.6635292 0.7193517 2
2740  1.288858 -0.6635292 0.7193517 1
2741  1.288858 -0.6635292 0.7193517 1
2742  1.288858 -0.6635292 0.7193517 1
2743  1.288858 -0.6635292 0.7193517 3
2744  1.288858 -0.6635292 0.7193517 3
2745  1.288858 -0.6635292 0.7193517 2
2746  1.288858 -0.6635292 0.7193517 2
2747  1.288858 -0.6635292 0.7193517 1
2748  1.288858 -0.6635292 0.7193517 2
2749  1.288858 -0.6635292 0.7193517 3
2750  1.288858 -0.6635292 0.7193517 3
2751  1.288858 -0.6635292 0.7193517 1
2752  1.288858 -0.6635292 0.7193517 3
2753  1.288858 -0.6635292 0.7193517 2
2754  1.288858 -0.6635292 0.7193517 2
2755  1.288858 -0.6635292 0.7193517 3
2756  1.288858 -0.6635292 0.7193517 1
2757  1.288858 -0.6635292 0.7193517 2
2758  1.295082 -0.6624302 0.7213078 3
2759  1.295082 -0.6624302 0.7213078 2
2760  1.295082 -0.6624302 0.7213078 1
2761  1.295082 -0.6624302 0.7213078 3
2762  1.295082 -0.6624302 0.7213078 1
2763  1.295082 -0.6624302 0.7213078 2
2764  1.295082 -0.6624302 0.7213078 2
2765  1.295082 -0.6624302 0.7213078 1
2766  1.295082 -0.6624302 0.7213078 1
2767  1.295082 -0.6624302 0.7213078 1
2768  1.295082 -0.6624302 0.7213078 3
2769  1.295082 -0.6624302 0.7213078 3
2770  1.295082 -0.6624302 0.7213078 2
2771  1.295082 -0.6624302 0.7213078 1
2772  1.295082 -0.6624302 0.7213078 1
2773  1.295082 -0.6624302 0.7213078 1
2774  1.295082 -0.6624302 0.7213078 3
2775  1.295082 -0.6624302 0.7213078 2
2776  1.295082 -0.6624302 0.7213078 3
2777  1.295082 -0.6624302 0.7213078 2
2778  1.295082 -0.6624302 0.7213078 1
2779  1.295082 -0.6624302 0.7213078 2
2780  1.295082 -0.6624302 0.7213078 3
2781  1.295082 -0.6624302 0.7213078 2
2782  1.295082 -0.6624302 0.7213078 2
2783  1.295082 -0.6624302 0.7213078 1
2784  1.295082 -0.6624302 0.7213078 2
2785  1.295082 -0.6624302 0.7213078 3
2786  1.295082 -0.6624302 0.7213078 1
2787  1.295082 -0.6624302 0.7213078 2
2788  1.295082 -0.6624302 0.7213078 1
2789  1.295082 -0.6624302 0.7213078 1
2790  1.295082 -0.6624302 0.7213078 2
2791  1.295082 -0.6624302 0.7213078 2
2792  1.295082 -0.6624302 0.7213078 2
2793  1.295082 -0.6624302 0.7213078 3
2794  1.295082 -0.6624302 0.7213078 1
2795  1.295082 -0.6624302 0.7213078 2
2796  1.295082 -0.6624302 0.7213078 2
2797  1.295082 -0.6624302 0.7213078 2
2798  1.295082 -0.6624302 0.7213078 3
2799  1.295082 -0.6624302 0.7213078 3
2800  1.295082 -0.6624302 0.7213078 1
2801  1.295082 -0.6624302 0.7213078 2
2802  1.295082 -0.6624302 0.7213078 2
2803  1.295082 -0.6624302 0.7213078 2
2804  1.295082 -0.6624302 0.7213078 1
2805  1.295082 -0.6624302 0.7213078 1
2806  1.295082 -0.6624302 0.7213078 1
2807  1.295082 -0.6624302 0.7213078 3
2808  1.295082 -0.6624302 0.7213078 1
2809  1.295082 -0.6624302 0.7213078 3
2810  1.295082 -0.6624302 0.7213078 1
2811  1.295082 -0.6624302 0.7213078 1
2812  1.295082 -0.6624302 0.7213078 3
2813  1.295082 -0.6624302 0.7213078 1
2814  1.295082 -0.6624302 0.7213078 3
2815  1.295082 -0.6624302 0.7213078 2
2816  1.295082 -0.6624302 0.7213078 1
2817  1.295082 -0.6624302 0.7213078 1
2818  1.295082 -0.6624302 0.7213078 1
2819  1.295082 -0.6624302 0.7213078 2
2820  1.295082 -0.6624302 0.7213078 1
2821  1.295082 -0.6624302 0.7213078 2
2822  1.295082 -0.6624302 0.7213078 2
2823  1.295082 -0.6624302 0.7213078 2
2824  1.295082 -0.6624302 0.7213078 3
2825  1.295082 -0.6624302 0.7213078 1
2826  1.295082 -0.6624302 0.7213078 2
2827  1.295082 -0.6624302 0.7213078 1
2828  1.295082 -0.6624302 0.7213078 1
2829  1.295082 -0.6624302 0.7213078 3
2830  1.295082 -0.6624302 0.7213078 2
2831  1.295082 -0.6624302 0.7213078 1
2832  1.295082 -0.6624302 0.7213078 3
2833  1.295082 -0.6624302 0.7213078 2
2834  1.295082 -0.6624302 0.7213078 3
2835  1.295082 -0.6624302 0.7213078 2
2836  1.295082 -0.6624302 0.7213078 2
2837  1.295082 -0.6624302 0.7213078 3
2838  1.295082 -0.6624302 0.7213078 2
2839  1.295082 -0.6624302 0.7213078 3
2840  1.295082 -0.6624302 0.7213078 3
2841  1.295082 -0.6624302 0.7213078 1
2842  1.295082 -0.6624302 0.7213078 1
2843  1.295082 -0.6624302 0.7213078 1
2844  1.295082 -0.6624302 0.7213078 3
2845  1.295082 -0.6624302 0.7213078 1
2846  1.295082 -0.6624302 0.7213078 2
2847  1.295082 -0.6624302 0.7213078 1
2848  1.295082 -0.6624302 0.7213078 1
2849  1.295082 -0.6624302 0.7213078 3
2850  1.295082 -0.6624302 0.7213078 2
2851  1.295082 -0.6624302 0.7213078 1
2852  1.295082 -0.6624302 0.7213078 1
2853  1.295082 -0.6624302 0.7213078 3
2854  1.295082 -0.6624302 0.7213078 3
2855  1.295082 -0.6624302 0.7213078 1
2856  1.295082 -0.6624302 0.7213078 1
2857  1.295082 -0.6624302 0.7213078 2
2858  1.295082 -0.6624302 0.7213078 1
2859  1.295082 -0.6624302 0.7213078 2
2860  1.295082 -0.6624302 0.7213078 3
2861  1.295082 -0.6624302 0.7213078 2
2862  1.295082 -0.6624302 0.7213078 2
2863  1.295082 -0.6624302 0.7213078 3
2864  1.295082 -0.6624302 0.7213078 2
2865  1.295082 -0.6624302 0.7213078 1
2866  1.295082 -0.6624302 0.7213078 3
2867  1.295082 -0.6624302 0.7213078 2
2868  1.295082 -0.6624302 0.7213078 1
2869  1.295082 -0.6624302 0.7213078 1
2870  1.295082 -0.6624302 0.7213078 1
2871  1.295082 -0.6624302 0.7213078 1
2872  1.295082 -0.6624302 0.7213078 2
2873  1.295082 -0.6624302 0.7213078 1
2874  1.295082 -0.6624302 0.7213078 1
2875  1.295082 -0.6624302 0.7213078 3
2876  1.295082 -0.6624302 0.7213078 1
2877  1.295082 -0.6624302 0.7213078 3
2878  1.295082 -0.6624302 0.7213078 2
2879  1.295082 -0.6624302 0.7213078 3
2880  1.295082 -0.6624302 0.7213078 2
2881  1.295082 -0.6624302 0.7213078 3
2882  1.295082 -0.6624302 0.7213078 1
2883  1.295082 -0.6624302 0.7213078 3
2884  1.295082 -0.6624302 0.7213078 1
2885  1.295082 -0.6624302 0.7213078 2
2886  1.295082 -0.6624302 0.7213078 1
2887  1.295082 -0.6624302 0.7213078 3
2888  1.295082 -0.6624302 0.7213078 1
2889  1.295082 -0.6624302 0.7213078 1
2890  1.295082 -0.6624302 0.7213078 3
2891  1.295082 -0.6624302 0.7213078 3
2892  1.295082 -0.6624302 0.7213078 1
2893  1.295082 -0.6624302 0.7213078 2
2894  1.295082 -0.6624302 0.7213078 2
2895  1.295082 -0.6624302 0.7213078 2
2896  1.295082 -0.6624302 0.7213078 2
2897  1.295082 -0.6624302 0.7213078 3
2898  1.295082 -0.6624302 0.7213078 3
2899  1.295082 -0.6624302 0.7213078 2
2900  1.295082 -0.6624302 0.7213078 1
2901  1.295082 -0.6624302 0.7213078 1
2902  1.295082 -0.6624302 0.7213078 1
2903  1.295082 -0.6624302 0.7213078 1
2904  1.295082 -0.6624302 0.7213078 2
2905  1.295082 -0.6624302 0.7213078 1
2906  1.295082 -0.6624302 0.7213078 1
2907  1.295082 -0.6624302 0.7213078 2
2908  1.295082 -0.6624302 0.7213078 1
2909  1.295082 -0.6624302 0.7213078 1
2910  1.295082 -0.6624302 0.7213078 3
2911  1.295082 -0.6624302 0.7213078 3
2912  1.295082 -0.6624302 0.7213078 1
2913  1.295082 -0.6624302 0.7213078 1
2914  1.295082 -0.6624302 0.7213078 3
2915  1.295082 -0.6624302 0.7213078 2
2916  1.295082 -0.6624302 0.7213078 2
2917  1.295082 -0.6624302 0.7213078 2
2918  1.295082 -0.6624302 0.7213078 2
2919  1.295082 -0.6624302 0.7213078 2
2920  1.295082 -0.6624302 0.7213078 2
2921  1.295082 -0.6624302 0.7213078 2
2922  1.295082 -0.6624302 0.7213078 3
2923  1.295082 -0.6624302 0.7213078 1
2924  1.295082 -0.6624302 0.7213078 1
2925  1.295082 -0.6624302 0.7213078 1
2926  1.295082 -0.6624302 0.7213078 3
2927  1.295082 -0.6624302 0.7213078 2
2928  1.295082 -0.6624302 0.7213078 1
2929  1.295082 -0.6624302 0.7213078 3
2930  1.295082 -0.6624302 0.7213078 2
2931  1.295082 -0.6624302 0.7213078 1
2932  1.295082 -0.6624302 0.7213078 1
2933  1.295082 -0.6624302 0.7213078 1
2934  1.295082 -0.6624302 0.7213078 3
2935  1.295082 -0.6624302 0.7213078 2
2936  1.295082 -0.6624302 0.7213078 3
2937  1.295082 -0.6624302 0.7213078 1
2938  1.295082 -0.6624302 0.7213078 2
2939  1.295082 -0.6624302 0.7213078 1
2940  1.295082 -0.6624302 0.7213078 1
2941  1.295082 -0.6624302 0.7213078 2
2942  1.295082 -0.6624302 0.7213078 3
2943  1.295082 -0.6624302 0.7213078 1
2944  1.295082 -0.6624302 0.7213078 2
2945  1.295082 -0.6624302 0.7213078 3
2946  1.295082 -0.6624302 0.7213078 1
2947  1.295082 -0.6624302 0.7213078 2
2948  1.295082 -0.6624302 0.7213078 2
2949  1.295082 -0.6624302 0.7213078 1
2950  1.295082 -0.6624302 0.7213078 1
2951  1.295082 -0.6624302 0.7213078 3
2952  1.295082 -0.6624302 0.7213078 3
2953  1.295082 -0.6624302 0.7213078 2
2954  1.295082 -0.6624302 0.7213078 2
2955  1.295082 -0.6624302 0.7213078 2
2956  1.295082 -0.6624302 0.7213078 1
2957  1.295082 -0.6624302 0.7213078 3
2958  1.295082 -0.6624302 0.7213078 2
2959  1.295082 -0.6624302 0.7213078 3
2960  1.295082 -0.6624302 0.7213078 2
2961  1.295082 -0.6624302 0.7213078 1
2962  1.295082 -0.6624302 0.7213078 1
2963  1.295082 -0.6624302 0.7213078 3
2964  1.295082 -0.6624302 0.7213078 1
2965  1.295082 -0.6624302 0.7213078 2
2966  1.295082 -0.6624302 0.7213078 2
2967  1.295082 -0.6624302 0.7213078 3
2968  1.295082 -0.6624302 0.7213078 1
2969  1.295082 -0.6624302 0.7213078 1
2970  1.295082 -0.6624302 0.7213078 1
2971  1.295082 -0.6624302 0.7213078 1
2972  1.295082 -0.6624302 0.7213078 3
2973  1.295082 -0.6624302 0.7213078 1
2974  1.295082 -0.6624302 0.7213078 1
2975  1.295082 -0.6624302 0.7213078 2
2976  1.295082 -0.6624302 0.7213078 2
2977  1.295082 -0.6624302 0.7213078 1
2978  1.295082 -0.6624302 0.7213078 2
2979  1.295082 -0.6624302 0.7213078 1
2980  1.295082 -0.6624302 0.7213078 2
2981  1.295082 -0.6624302 0.7213078 2
2982  1.295082 -0.6624302 0.7213078 3
2983  1.295082 -0.6624302 0.7213078 3
2984  1.295082 -0.6624302 0.7213078 2
2985  1.295082 -0.6624302 0.7213078 3
2986  1.295082 -0.6624302 0.7213078 1
2987  1.295082 -0.6624302 0.7213078 1
2988  1.295082 -0.6624302 0.7213078 3
2989  1.295082 -0.6624302 0.7213078 1
2990  1.295082 -0.6624302 0.7213078 1
2991  1.295082 -0.6624302 0.7213078 3
2992  1.295082 -0.6624302 0.7213078 3
2993  1.295082 -0.6624302 0.7213078 1
2994  1.295082 -0.6624302 0.7213078 1
2995  1.295082 -0.6624302 0.7213078 2
2996  1.295082 -0.6624302 0.7213078 3
2997  1.295082 -0.6624302 0.7213078 3
2998  1.295082 -0.6624302 0.7213078 2
2999  1.295082 -0.6624302 0.7213078 3
3000  1.295082 -0.6624302 0.7213078 2
3001  1.295082 -0.6624302 0.7213078 1
3002  1.295082 -0.6624302 0.7213078 3
3003  1.295082 -0.6624302 0.7213078 2
3004  1.295082 -0.6624302 0.7213078 3
3005  1.295082 -0.6624302 0.7213078 3
3006  1.295082 -0.6624302 0.7213078 3
3007  1.295082 -0.6624302 0.7213078 1
3008  1.295082 -0.6624302 0.7213078 2
3009  1.295082 -0.6624302 0.7213078 2
3010  1.295082 -0.6624302 0.7213078 2
3011  1.295082 -0.6624302 0.7213078 1
3012  1.295082 -0.6624302 0.7213078 2
3013  1.295082 -0.6624302 0.7213078 3
3014  1.295082 -0.6624302 0.7213078 2
3015  1.295082 -0.6624302 0.7213078 2
3016  1.295082 -0.6624302 0.7213078 3
3017  1.295082 -0.6624302 0.7213078 1
3018  1.295082 -0.6624302 0.7213078 1
3019  1.295082 -0.6624302 0.7213078 1
3020  1.295082 -0.6624302 0.7213078 2
3021  1.295082 -0.6624302 0.7213078 1
3022  1.295082 -0.6624302 0.7213078 1
3023  1.295082 -0.6624302 0.7213078 2
3024  1.295082 -0.6624302 0.7213078 3
3025  1.295082 -0.6624302 0.7213078 1
3026  1.295082 -0.6624302 0.7213078 2
3027  1.295082 -0.6624302 0.7213078 2
3028  1.295082 -0.6624302 0.7213078 1
3029  1.295082 -0.6624302 0.7213078 3
3030  1.295082 -0.6624302 0.7213078 1
3031  1.295082 -0.6624302 0.7213078 2
3032  1.295082 -0.6624302 0.7213078 2
3033  1.295082 -0.6624302 0.7213078 1
3034  1.295082 -0.6624302 0.7213078 2
3035  1.295082 -0.6624302 0.7213078 3
3036  1.295082 -0.6624302 0.7213078 1
3037  1.295082 -0.6624302 0.7213078 2
3038  1.295082 -0.6624302 0.7213078 3
3039  1.295082 -0.6624302 0.7213078 1
3040  1.295082 -0.6624302 0.7213078 3
3041  1.295082 -0.6624302 0.7213078 3
3042  1.295082 -0.6624302 0.7213078 1
3043  1.295082 -0.6624302 0.7213078 3
3044  1.295082 -0.6624302 0.7213078 2
3045  1.295082 -0.6624302 0.7213078 2
3046  1.295082 -0.6624302 0.7213078 2
3047  1.295082 -0.6624302 0.7213078 1
3048  1.295082 -0.6624302 0.7213078 3
3049  1.295082 -0.6624302 0.7213078 1
3050  1.295082 -0.6624302 0.7213078 1
3051  1.295082 -0.6624302 0.7213078 2
3052  1.295082 -0.6624302 0.7213078 3
3053  1.295082 -0.6624302 0.7213078 1
3054  1.295082 -0.6624302 0.7213078 3
3055  1.295082 -0.6624302 0.7213078 1
3056  1.295082 -0.6624302 0.7213078 1
3057  1.295082 -0.6624302 0.7213078 2
3058  1.295082 -0.6624302 0.7213078 2
3059  1.295082 -0.6624302 0.7213078 1
3060  1.295082 -0.6624302 0.7213078 3
3061  1.295082 -0.6624302 0.7213078 1
3062  1.295082 -0.6624302 0.7213078 2
3063  1.295082 -0.6624302 0.7213078 3
3064  1.295082 -0.6624302 0.7213078 2
3065  1.295082 -0.6624302 0.7213078 2
3066  1.295082 -0.6624302 0.7213078 2
3067  1.295082 -0.6624302 0.7213078 3
3068  1.295082 -0.6624302 0.7213078 3
3069  1.295082 -0.6624302 0.7213078 1
3070  1.295082 -0.6624302 0.7213078 3
3071  1.295082 -0.6624302 0.7213078 3
3072  1.295082 -0.6624302 0.7213078 1
3073  1.295082 -0.6624302 0.7213078 3
3074  1.295082 -0.6624302 0.7213078 3
3075  1.295082 -0.6624302 0.7213078 3
3076  1.295082 -0.6624302 0.7213078 3
3077  1.295082 -0.6624302 0.7213078 2
3078  1.295082 -0.6624302 0.7213078 2
3079  1.295082 -0.6624302 0.7213078 2
3080  1.295082 -0.6624302 0.7213078 3
3081  1.295082 -0.6624302 0.7213078 1
3082  1.295082 -0.6624302 0.7213078 1
3083  1.295082 -0.6624302 0.7213078 1
3084  1.295082 -0.6624302 0.7213078 2
3085  1.295082 -0.6624302 0.7213078 3
3086  1.295082 -0.6624302 0.7213078 2
3087  1.295082 -0.6624302 0.7213078 1
3088  1.295082 -0.6624302 0.7213078 1
3089  1.295082 -0.6624302 0.7213078 2
3090  1.295082 -0.6624302 0.7213078 1
3091  1.295082 -0.6624302 0.7213078 2
3092  1.295082 -0.6624302 0.7213078 1
3093  1.295082 -0.6624302 0.7213078 2
3094  1.295082 -0.6624302 0.7213078 3
3095  1.295082 -0.6624302 0.7213078 1
3096  1.295082 -0.6624302 0.7213078 2
3097  1.295082 -0.6624302 0.7213078 2
3098  1.295082 -0.6624302 0.7213078 2
3099  1.295082 -0.6624302 0.7213078 2
3100  1.295082 -0.6624302 0.7213078 3
3101  1.295082 -0.6624302 0.7213078 3
3102  1.295082 -0.6624302 0.7213078 1
3103  1.295082 -0.6624302 0.7213078 1
3104  1.295082 -0.6624302 0.7213078 3
3105  1.295082 -0.6624302 0.7213078 3
3106  1.295082 -0.6624302 0.7213078 3
3107  1.295082 -0.6624302 0.7213078 3
3108  1.295082 -0.6624302 0.7213078 3
3109  1.295082 -0.6624302 0.7213078 2
3110  1.295082 -0.6624302 0.7213078 2
3111  1.295082 -0.6624302 0.7213078 2
3112  1.295082 -0.6624302 0.7213078 2
3113  1.295082 -0.6624302 0.7213078 1
3114  1.295082 -0.6624302 0.7213078 1
3115  1.295082 -0.6624302 0.7213078 2
3116  1.295082 -0.6624302 0.7213078 3
3117  1.295082 -0.6624302 0.7213078 2
3118  1.295082 -0.6624302 0.7213078 2
3119  1.295082 -0.6624302 0.7213078 1
3120  1.295082 -0.6624302 0.7213078 2
3121  1.295082 -0.6624302 0.7213078 1
3122  1.295082 -0.6624302 0.7213078 3
3123  1.295082 -0.6624302 0.7213078 2
3124  1.295082 -0.6624302 0.7213078 2
3125  1.295082 -0.6624302 0.7213078 2
3126  1.295082 -0.6624302 0.7213078 3
3127  1.295082 -0.6624302 0.7213078 1
3128  1.295082 -0.6624302 0.7213078 3
3129  1.295082 -0.6624302 0.7213078 2
3130  1.295082 -0.6624302 0.7213078 2
3131  1.295082 -0.6624302 0.7213078 1
3132  1.295082 -0.6624302 0.7213078 3
3133  1.295082 -0.6624302 0.7213078 2
3134  1.295082 -0.6624302 0.7213078 3
3135  1.295082 -0.6624302 0.7213078 3
3136  1.295082 -0.6624302 0.7213078 3
3137  1.295082 -0.6624302 0.7213078 3
3138  1.295082 -0.6624302 0.7213078 2
3139  1.295082 -0.6624302 0.7213078 1
3140  1.295082 -0.6624302 0.7213078 1
3141  1.295082 -0.6624302 0.7213078 2
3142  1.295082 -0.6624302 0.7213078 2
3143  1.295082 -0.6624302 0.7213078 2
3144  1.295082 -0.6624302 0.7213078 2
3145  1.295082 -0.6624302 0.7213078 1
3146  1.295082 -0.6624302 0.7213078 3
3147  1.295082 -0.6624302 0.7213078 2
3148  1.295082 -0.6624302 0.7213078 2
3149  1.295082 -0.6624302 0.7213078 1
3150  1.295082 -0.6624302 0.7213078 3
3151  1.295082 -0.6624302 0.7213078 3
3152  1.295082 -0.6624302 0.7213078 3
3153  1.295082 -0.6624302 0.7213078 3
3154  1.295082 -0.6624302 0.7213078 1
3155  1.295082 -0.6624302 0.7213078 3
3156  1.295082 -0.6624302 0.7213078 3
3157  1.295082 -0.6624302 0.7213078 2
3158  1.295082 -0.6624302 0.7213078 3
3159  1.295082 -0.6624302 0.7213078 1
3160  1.295082 -0.6624302 0.7213078 2
3161  1.295082 -0.6624302 0.7213078 2
3162  1.295082 -0.6624302 0.7213078 1
3163  1.295082 -0.6624302 0.7213078 2
3164  1.295082 -0.6624302 0.7213078 3
3165  1.295082 -0.6624302 0.7213078 2
3166  1.295082 -0.6624302 0.7213078 1
3167  1.295082 -0.6624302 0.7213078 2
3168  1.295082 -0.6624302 0.7213078 1
3169  1.295082 -0.6624302 0.7213078 3
3170  1.295082 -0.6624302 0.7213078 1
3171  1.295082 -0.6624302 0.7213078 3
3172  1.295082 -0.6624302 0.7213078 1
3173  1.295082 -0.6624302 0.7213078 2
3174  1.295082 -0.6624302 0.7213078 1
3175  1.295082 -0.6624302 0.7213078 3
3176  1.295082 -0.6624302 0.7213078 1
3177  1.295082 -0.6624302 0.7213078 2
3178  1.295082 -0.6624302 0.7213078 3
3179  1.295082 -0.6624302 0.7213078 2
3180  1.295082 -0.6624302 0.7213078 2
3181  1.295082 -0.6624302 0.7213078 2
3182  1.295082 -0.6624302 0.7213078 3
3183  1.295082 -0.6624302 0.7213078 1
3184  1.295082 -0.6624302 0.7213078 3
3185  1.295082 -0.6624302 0.7213078 1
3186  1.295082 -0.6624302 0.7213078 3
3187  1.295082 -0.6624302 0.7213078 1
3188  1.295082 -0.6624302 0.7213078 3
3189  1.295082 -0.6624302 0.7213078 2
3190  1.295082 -0.6624302 0.7213078 2
3191  1.295082 -0.6624302 0.7213078 3
3192  1.295082 -0.6624302 0.7213078 3
3193  1.295082 -0.6624302 0.7213078 2
3194  1.295082 -0.6624302 0.7213078 3
3195  1.295082 -0.6624302 0.7213078 1
3196  1.295082 -0.6624302 0.7213078 2
3197  1.295082 -0.6624302 0.7213078 2
3198  1.295082 -0.6624302 0.7213078 1
3199  1.295082 -0.6624302 0.7213078 3
3200  1.295082 -0.6624302 0.7213078 3
3201  1.295082 -0.6624302 0.7213078 3
3202  1.295082 -0.6624302 0.7213078 1
3203  1.295082 -0.6624302 0.7213078 2
3204  1.295082 -0.6624302 0.7213078 3
3205  1.295082 -0.6624302 0.7213078 2
3206  1.295082 -0.6624302 0.7213078 3
3207  1.295082 -0.6624302 0.7213078 3
3208  1.295082 -0.6624302 0.7213078 3
3209  1.295082 -0.6624302 0.7213078 1
3210  1.295082 -0.6624302 0.7213078 3
3211  1.295082 -0.6624302 0.7213078 1
3212  1.295082 -0.6624302 0.7213078 2
3213  1.295082 -0.6624302 0.7213078 3
3214  1.295082 -0.6624302 0.7213078 2
3215  1.295082 -0.6624302 0.7213078 1
3216  1.295082 -0.6624302 0.7213078 3
3217  1.295082 -0.6624302 0.7213078 2
3218  1.295082 -0.6624302 0.7213078 1
3219  1.295082 -0.6624302 0.7213078 2
3220  1.295082 -0.6624302 0.7213078 1
3221  1.295082 -0.6624302 0.7213078 2
3222  1.295082 -0.6624302 0.7213078 3
3223  1.295082 -0.6624302 0.7213078 2
3224  1.295082 -0.6624302 0.7213078 2
3225  1.295082 -0.6624302 0.7213078 3
3226  1.295082 -0.6624302 0.7213078 3
3227  1.295082 -0.6624302 0.7213078 1
3228  1.295082 -0.6624302 0.7213078 1
3229  1.295082 -0.6624302 0.7213078 1
3230  1.295082 -0.6624302 0.7213078 3
3231  1.295082 -0.6624302 0.7213078 1
3232  1.295082 -0.6624302 0.7213078 1
3233  1.295082 -0.6624302 0.7213078 2
3234  1.295082 -0.6624302 0.7213078 3
3235  1.295082 -0.6624302 0.7213078 1
3236  1.295082 -0.6624302 0.7213078 2
3237  1.295082 -0.6624302 0.7213078 2
3238  1.295082 -0.6624302 0.7213078 1
3239  1.295082 -0.6624302 0.7213078 1
3240  1.295082 -0.6624302 0.7213078 2
3241  1.295082 -0.6624302 0.7213078 2
3242  1.295082 -0.6624302 0.7213078 1
3243  1.295082 -0.6624302 0.7213078 2
3244  1.295082 -0.6624302 0.7213078 1
3245  1.295082 -0.6624302 0.7213078 2
3246  1.295082 -0.6624302 0.7213078 3
3247  1.295082 -0.6624302 0.7213078 2
3248  1.295082 -0.6624302 0.7213078 1
3249  1.295082 -0.6624302 0.7213078 1
3250  1.295082 -0.6624302 0.7213078 3
3251  1.295082 -0.6624302 0.7213078 3
3252  1.295082 -0.6624302 0.7213078 2
3253  1.295082 -0.6624302 0.7213078 1
3254  1.295082 -0.6624302 0.7213078 1
3255  1.295082 -0.6624302 0.7213078 1
3256  1.295082 -0.6624302 0.7213078 2
3257  1.295082 -0.6624302 0.7213078 1
3258  1.295082 -0.6624302 0.7213078 1
3259  1.295082 -0.6624302 0.7213078 3
3260  1.295082 -0.6624302 0.7213078 3
3261  1.295082 -0.6624302 0.7213078 1
3262  1.295082 -0.6624302 0.7213078 1
3263  1.295082 -0.6624302 0.7213078 2
3264  1.295082 -0.6624302 0.7213078 1
3265  1.295082 -0.6624302 0.7213078 1
3266  1.295082 -0.6624302 0.7213078 3
3267  1.295082 -0.6624302 0.7213078 2
3268  1.295082 -0.6624302 0.7213078 2
3269  1.295082 -0.6624302 0.7213078 2
3270  1.295082 -0.6624302 0.7213078 1
3271  1.295082 -0.6624302 0.7213078 1
3272  1.295082 -0.6624302 0.7213078 3
3273  1.295082 -0.6624302 0.7213078 2
3274  1.295082 -0.6624302 0.7213078 1
3275  1.295082 -0.6624302 0.7213078 1
3276  1.295082 -0.6624302 0.7213078 2
3277  1.295082 -0.6624302 0.7213078 1
3278  1.295082 -0.6624302 0.7213078 3
3279  1.295082 -0.6624302 0.7213078 3
3280  1.295082 -0.6624302 0.7213078 1
3281  1.295082 -0.6624302 0.7213078 2
3282  1.295082 -0.6624302 0.7213078 3
3283  1.295082 -0.6624302 0.7213078 3
3284  1.295082 -0.6624302 0.7213078 1
3285  1.295082 -0.6624302 0.7213078 2
3286  1.295082 -0.6624302 0.7213078 1
3287  1.295082 -0.6624302 0.7213078 1
3288  1.295082 -0.6624302 0.7213078 2
3289  1.295082 -0.6624302 0.7213078 3
3290  1.295082 -0.6624302 0.7213078 1
3291  1.295082 -0.6624302 0.7213078 3
3292  1.295082 -0.6624302 0.7213078 3
3293  1.295082 -0.6624302 0.7213078 1
3294  1.295082 -0.6624302 0.7213078 1
3295  1.295082 -0.6624302 0.7213078 3
3296  1.295082 -0.6624302 0.7213078 2
3297  1.295082 -0.6624302 0.7213078 2
3298  1.295082 -0.6624302 0.7213078 1
3299  1.295082 -0.6624302 0.7213078 1
3300  1.295082 -0.6624302 0.7213078 1
3301  1.295082 -0.6624302 0.7213078 3
3302  1.295082 -0.6624302 0.7213078 2
3303  1.295082 -0.6624302 0.7213078 2
3304  1.295082 -0.6624302 0.7213078 3
3305  1.295082 -0.6624302 0.7213078 3
3306  1.295082 -0.6624302 0.7213078 3
3307  1.295082 -0.6624302 0.7213078 3
3308  1.295082 -0.6624302 0.7213078 2
3309  1.295082 -0.6624302 0.7213078 3
3310  1.295082 -0.6624302 0.7213078 2
3311  1.295082 -0.6624302 0.7213078 2
3312  1.295082 -0.6624302 0.7213078 2
3313  1.295082 -0.6624302 0.7213078 3
3314  1.295082 -0.6624302 0.7213078 3
3315  1.295082 -0.6624302 0.7213078 2
3316  1.295082 -0.6624302 0.7213078 1
3317  1.295082 -0.6624302 0.7213078 1
3318  1.295082 -0.6624302 0.7213078 1
3319  1.295082 -0.6624302 0.7213078 3
3320  1.295082 -0.6624302 0.7213078 2
3321  1.295082 -0.6624302 0.7213078 1
3322  1.295082 -0.6624302 0.7213078 2
3323  1.295082 -0.6624302 0.7213078 3
3324  1.295082 -0.6624302 0.7213078 3
3325  1.295082 -0.6624302 0.7213078 1
3326  1.295082 -0.6624302 0.7213078 3
3327  1.295082 -0.6624302 0.7213078 2
3328  1.295082 -0.6624302 0.7213078 3
3329  1.295082 -0.6624302 0.7213078 2
3330  1.295082 -0.6624302 0.7213078 1
3331  1.295082 -0.6624302 0.7213078 1
3332  1.295082 -0.6624302 0.7213078 3
3333  1.295082 -0.6624302 0.7213078 2
3334  1.295082 -0.6624302 0.7213078 3
3335  1.295082 -0.6624302 0.7213078 1
3336  1.295082 -0.6624302 0.7213078 3
3337  1.295082 -0.6624302 0.7213078 3
3338  1.295082 -0.6624302 0.7213078 2
3339  1.295082 -0.6624302 0.7213078 1
3340  1.295082 -0.6624302 0.7213078 1
3341  1.295082 -0.6624302 0.7213078 3
3342  1.295082 -0.6624302 0.7213078 2
3343  1.295082 -0.6624302 0.7213078 1
3344  1.295082 -0.6624302 0.7213078 1
3345  1.295082 -0.6624302 0.7213078 2
3346  1.295082 -0.6624302 0.7213078 3
3347  1.295082 -0.6624302 0.7213078 1
3348  1.295082 -0.6624302 0.7213078 1
3349  1.295082 -0.6624302 0.7213078 2
3350  1.295082 -0.6624302 0.7213078 1
3351  1.295082 -0.6624302 0.7213078 1
3352  1.295082 -0.6624302 0.7213078 1
3353  1.295082 -0.6624302 0.7213078 3
3354  1.295082 -0.6624302 0.7213078 2
3355  1.295082 -0.6624302 0.7213078 1
3356  1.295082 -0.6624302 0.7213078 1
3357  1.295082 -0.6624302 0.7213078 1
3358  1.295082 -0.6624302 0.7213078 3
3359  1.295082 -0.6624302 0.7213078 2
3360  1.295082 -0.6624302 0.7213078 2
3361  1.295082 -0.6624302 0.7213078 1
3362  1.295082 -0.6624302 0.7213078 3
3363  1.295082 -0.6624302 0.7213078 2
3364  1.295082 -0.6624302 0.7213078 3
3365  1.295082 -0.6624302 0.7213078 2
3366  1.295082 -0.6624302 0.7213078 2
3367  1.295082 -0.6624302 0.7213078 2
3368  1.295082 -0.6624302 0.7213078 3
3369  1.295082 -0.6624302 0.7213078 2
3370  1.295082 -0.6624302 0.7213078 3
3371  1.295082 -0.6624302 0.7213078 3
3372  1.295082 -0.6624302 0.7213078 2
3373  1.295082 -0.6624302 0.7213078 2
3374  1.295082 -0.6624302 0.7213078 1
3375  1.295082 -0.6624302 0.7213078 2
3376  1.295082 -0.6624302 0.7213078 2
3377  1.295082 -0.6624302 0.7213078 1
3378  1.295082 -0.6624302 0.7213078 2
3379  1.295082 -0.6624302 0.7213078 3
3380  1.295082 -0.6624302 0.7213078 3
3381  1.295082 -0.6624302 0.7213078 1
3382  1.295082 -0.6624302 0.7213078 1
3383  1.295082 -0.6624302 0.7213078 2
3384  1.295082 -0.6624302 0.7213078 1
3385  1.295082 -0.6624302 0.7213078 3
3386  1.295082 -0.6624302 0.7213078 3
3387  1.295082 -0.6624302 0.7213078 3
3388  1.295082 -0.6624302 0.7213078 1
3389  1.295082 -0.6624302 0.7213078 3
3390  1.295082 -0.6624302 0.7213078 3
3391  1.295082 -0.6624302 0.7213078 2
3392  1.295082 -0.6624302 0.7213078 1
3393  1.295082 -0.6624302 0.7213078 2
3394  1.295082 -0.6624302 0.7213078 1
3395  1.295082 -0.6624302 0.7213078 2
3396  1.295082 -0.6624302 0.7213078 3
3397  1.295082 -0.6624302 0.7213078 2
3398  1.295082 -0.6624302 0.7213078 2
3399  1.295082 -0.6624302 0.7213078 1
3400  1.295082 -0.6624302 0.7213078 1
3401  1.295082 -0.6624302 0.7213078 3
3402  1.295082 -0.6624302 0.7213078 3
3403  1.295082 -0.6624302 0.7213078 2
3404  1.295082 -0.6624302 0.7213078 3
3405  1.295082 -0.6624302 0.7213078 2
3406  1.295082 -0.6624302 0.7213078 1
3407  1.295082 -0.6624302 0.7213078 2
3408  1.295082 -0.6624302 0.7213078 1
3409  1.295082 -0.6624302 0.7213078 1
3410  1.295082 -0.6624302 0.7213078 2
3411  1.295082 -0.6624302 0.7213078 1
3412  1.295082 -0.6624302 0.7213078 1
3413  1.295082 -0.6624302 0.7213078 3
3414  1.295082 -0.6624302 0.7213078 1
3415  1.295082 -0.6624302 0.7213078 1
3416  1.295082 -0.6624302 0.7213078 2
3417  1.295082 -0.6624302 0.7213078 1
3418  1.295082 -0.6624302 0.7213078 2
3419  1.295082 -0.6624302 0.7213078 3
3420  1.295082 -0.6624302 0.7213078 3
3421  1.295082 -0.6624302 0.7213078 2
3422  1.295082 -0.6624302 0.7213078 3
3423  1.295082 -0.6624302 0.7213078 1
3424  1.295082 -0.6624302 0.7213078 1
3425  1.295082 -0.6624302 0.7213078 2
3426  1.295082 -0.6624302 0.7213078 3
3427  1.295082 -0.6624302 0.7213078 2
3428  1.295082 -0.6624302 0.7213078 3
3429  1.295082 -0.6624302 0.7213078 2
3430  1.295082 -0.6624302 0.7213078 1
3431  1.295082 -0.6624302 0.7213078 1
3432  1.295082 -0.6624302 0.7213078 2
3433  1.295082 -0.6624302 0.7213078 1
3434  1.295082 -0.6624302 0.7213078 3
3435  1.295082 -0.6624302 0.7213078 1
3436  1.295082 -0.6624302 0.7213078 2
3437  1.295082 -0.6624302 0.7213078 3
3438  1.295082 -0.6624302 0.7213078 1
3439  1.295082 -0.6624302 0.7213078 2
3440  1.295082 -0.6624302 0.7213078 1
3441  1.295082 -0.6624302 0.7213078 2
3442  1.295082 -0.6624302 0.7213078 2
3443  1.295082 -0.6624302 0.7213078 2
3444  1.295082 -0.6624302 0.7213078 1
3445  1.295082 -0.6624302 0.7213078 3
3446  1.295082 -0.6624302 0.7213078 3
3447  1.295082 -0.6624302 0.7213078 3
3448  1.295082 -0.6624302 0.7213078 3
3449  1.295082 -0.6624302 0.7213078 2
3450  1.295082 -0.6624302 0.7213078 2
3451  1.295082 -0.6624302 0.7213078 3
3452  1.295082 -0.6624302 0.7213078 2
3453  1.295082 -0.6624302 0.7213078 2
3454  1.295082 -0.6624302 0.7213078 1
3455  1.295082 -0.6624302 0.7213078 2
3456  1.295082 -0.6624302 0.7213078 1
3457  1.295082 -0.6624302 0.7213078 3
3458  1.295082 -0.6624302 0.7213078 2
3459  1.295082 -0.6624302 0.7213078 1
3460  1.295082 -0.6624302 0.7213078 1
3461  1.295082 -0.6624302 0.7213078 2
3462  1.295082 -0.6624302 0.7213078 2
3463  1.295082 -0.6624302 0.7213078 2
3464  1.295082 -0.6624302 0.7213078 3
3465  1.295082 -0.6624302 0.7213078 3
3466  1.295082 -0.6624302 0.7213078 3
3467  1.295082 -0.6624302 0.7213078 3
3468  1.295082 -0.6624302 0.7213078 3
3469  1.295082 -0.6624302 0.7213078 1
3470  1.295082 -0.6624302 0.7213078 3
3471  1.295082 -0.6624302 0.7213078 1
3472  1.295082 -0.6624302 0.7213078 2
3473  1.295082 -0.6624302 0.7213078 3
3474  1.295082 -0.6624302 0.7213078 1
3475  1.295082 -0.6624302 0.7213078 2
3476  1.295082 -0.6624302 0.7213078 2
3477  1.295082 -0.6624302 0.7213078 3
3478  1.295082 -0.6624302 0.7213078 2
3479  1.295082 -0.6624302 0.7213078 3
3480  1.295082 -0.6624302 0.7213078 1
3481  1.295082 -0.6624302 0.7213078 1
3482  1.295082 -0.6624302 0.7213078 2
3483  1.295082 -0.6624302 0.7213078 2
3484  1.295082 -0.6624302 0.7213078 2
3485  1.295082 -0.6624302 0.7213078 2
3486  1.295082 -0.6624302 0.7213078 1
3487  1.295082 -0.6624302 0.7213078 1
3488  1.295082 -0.6624302 0.7213078 1
3489  1.295082 -0.6624302 0.7213078 3
3490  1.295082 -0.6624302 0.7213078 1
3491  1.295082 -0.6624302 0.7213078 2
3492  1.295082 -0.6624302 0.7213078 3
3493  1.295082 -0.6624302 0.7213078 1
3494  1.295082 -0.6624302 0.7213078 1
3495  1.295082 -0.6624302 0.7213078 2
3496  1.295082 -0.6624302 0.7213078 3
3497  1.295082 -0.6624302 0.7213078 2
3498  1.295082 -0.6624302 0.7213078 1
3499  1.295082 -0.6624302 0.7213078 1
3500  1.295082 -0.6624302 0.7213078 1
3501  1.295082 -0.6624302 0.7213078 1
3502  1.295082 -0.6624302 0.7213078 3
3503  1.295082 -0.6624302 0.7213078 3
3504  1.295082 -0.6624302 0.7213078 2
3505  1.295082 -0.6624302 0.7213078 1
3506  1.295082 -0.6624302 0.7213078 2
3507  1.295082 -0.6624302 0.7213078 1
3508  1.295082 -0.6624302 0.7213078 1
3509  1.295082 -0.6624302 0.7213078 1
3510  1.295082 -0.6624302 0.7213078 3
3511  1.295082 -0.6624302 0.7213078 1
3512  1.295082 -0.6624302 0.7213078 1
3513  1.295082 -0.6624302 0.7213078 2
3514  1.295082 -0.6624302 0.7213078 2
3515  1.295082 -0.6624302 0.7213078 1
3516  1.295082 -0.6624302 0.7213078 2
3517  1.295082 -0.6624302 0.7213078 3
3518  1.295082 -0.6624302 0.7213078 2
3519  1.295082 -0.6624302 0.7213078 3
3520  1.295082 -0.6624302 0.7213078 1
3521  1.295082 -0.6624302 0.7213078 1
3522  1.295082 -0.6624302 0.7213078 3
3523  1.295082 -0.6624302 0.7213078 1
3524  1.295082 -0.6624302 0.7213078 2
3525  1.295082 -0.6624302 0.7213078 3
3526  1.295082 -0.6624302 0.7213078 2
3527  1.295082 -0.6624302 0.7213078 2
3528  1.295082 -0.6624302 0.7213078 2
3529  1.295082 -0.6624302 0.7213078 2
3530  1.295082 -0.6624302 0.7213078 2
3531  1.295082 -0.6624302 0.7213078 3
3532  1.295082 -0.6624302 0.7213078 2
3533  1.295082 -0.6624302 0.7213078 2
3534  1.295082 -0.6624302 0.7213078 3
3535  1.295082 -0.6624302 0.7213078 2
3536  1.295082 -0.6624302 0.7213078 1
3537  1.295082 -0.6624302 0.7213078 3
3538  1.295082 -0.6624302 0.7213078 3
3539  1.295082 -0.6624302 0.7213078 1
3540  1.295082 -0.6624302 0.7213078 1
3541  1.295082 -0.6624302 0.7213078 3
3542  1.295082 -0.6624302 0.7213078 1
3543  1.295082 -0.6624302 0.7213078 2
3544  1.295082 -0.6624302 0.7213078 1
3545  1.295082 -0.6624302 0.7213078 3
3546  1.295082 -0.6624302 0.7213078 3
3547  1.295082 -0.6624302 0.7213078 1
3548  1.295082 -0.6624302 0.7213078 1
3549  1.295082 -0.6624302 0.7213078 2
3550  1.295082 -0.6624302 0.7213078 2
3551  1.295082 -0.6624302 0.7213078 2
3552  1.295082 -0.6624302 0.7213078 3
3553  1.295082 -0.6624302 0.7213078 2
3554  1.295082 -0.6624302 0.7213078 3
3555  1.295082 -0.6624302 0.7213078 2
3556  1.295082 -0.6624302 0.7213078 1
3557  1.295082 -0.6624302 0.7213078 1
3558  1.295082 -0.6624302 0.7213078 1
3559  1.295082 -0.6624302 0.7213078 2
3560  1.295082 -0.6624302 0.7213078 1
3561  1.295082 -0.6624302 0.7213078 1
3562  1.295082 -0.6624302 0.7213078 3
3563  1.295082 -0.6624302 0.7213078 2
3564  1.295082 -0.6624302 0.7213078 2
3565  1.295082 -0.6624302 0.7213078 1
3566  1.295082 -0.6624302 0.7213078 3
3567  1.295082 -0.6624302 0.7213078 3
3568  1.295082 -0.6624302 0.7213078 1
3569  1.295082 -0.6624302 0.7213078 1
3570  1.295082 -0.6624302 0.7213078 1
3571  1.295082 -0.6624302 0.7213078 3
3572  1.295082 -0.6624302 0.7213078 3
3573  1.295082 -0.6624302 0.7213078 1
3574  1.295082 -0.6624302 0.7213078 1
3575  1.295082 -0.6624302 0.7213078 1
3576  1.295082 -0.6624302 0.7213078 1
3577  1.295082 -0.6624302 0.7213078 2
3578  1.295082 -0.6624302 0.7213078 2
3579  1.295082 -0.6624302 0.7213078 1
3580  1.295082 -0.6624302 0.7213078 2
3581  1.295082 -0.6624302 0.7213078 2
3582  1.295082 -0.6624302 0.7213078 2
3583  1.295082 -0.6624302 0.7213078 1
3584  1.295082 -0.6624302 0.7213078 1
3585  1.295082 -0.6624302 0.7213078 1
3586  1.295082 -0.6624302 0.7213078 2
3587  1.295082 -0.6624302 0.7213078 1
3588  1.295082 -0.6624302 0.7213078 2
3589  1.295082 -0.6624302 0.7213078 1
3590  1.295082 -0.6624302 0.7213078 3
3591  1.295082 -0.6624302 0.7213078 3
3592  1.295082 -0.6624302 0.7213078 2
3593  1.295082 -0.6624302 0.7213078 2
3594  1.295082 -0.6624302 0.7213078 2
3595  1.295082 -0.6624302 0.7213078 1
3596  1.295082 -0.6624302 0.7213078 2
3597  1.295082 -0.6624302 0.7213078 2
3598  1.295082 -0.6624302 0.7213078 3
3599  1.295082 -0.6624302 0.7213078 3
3600  1.295082 -0.6624302 0.7213078 2
3601  1.295082 -0.6624302 0.7213078 1
3602  1.295082 -0.6624302 0.7213078 3
3603  1.295082 -0.6624302 0.7213078 2
3604  1.295082 -0.6624302 0.7213078 2
3605  1.295082 -0.6624302 0.7213078 3
3606  1.295082 -0.6624302 0.7213078 1
3607  1.295082 -0.6624302 0.7213078 1
3608  1.295082 -0.6624302 0.7213078 3
3609  1.295082 -0.6624302 0.7213078 3
3610  1.295082 -0.6624302 0.7213078 3
3611  1.295082 -0.6624302 0.7213078 3
3612  1.295082 -0.6624302 0.7213078 1
3613  1.295082 -0.6624302 0.7213078 2
3614  1.295082 -0.6624302 0.7213078 2
3615  1.295082 -0.6624302 0.7213078 1
3616  1.295082 -0.6624302 0.7213078 3
3617  1.295082 -0.6624302 0.7213078 2
3618  1.295082 -0.6624302 0.7213078 1
3619  1.295082 -0.6624302 0.7213078 2
3620  1.295082 -0.6624302 0.7213078 2
3621  1.295082 -0.6624302 0.7213078 2
3622  1.295082 -0.6624302 0.7213078 2
3623  1.295082 -0.6624302 0.7213078 2
3624  1.295082 -0.6624302 0.7213078 1
3625  1.295082 -0.6624302 0.7213078 1
3626  1.295082 -0.6624302 0.7213078 2
3627  1.295082 -0.6624302 0.7213078 1
3628  1.295082 -0.6624302 0.7213078 2
3629  1.295082 -0.6624302 0.7213078 3
3630  1.295082 -0.6624302 0.7213078 2
3631  1.295082 -0.6624302 0.7213078 3
3632  1.295082 -0.6624302 0.7213078 2
3633  1.295082 -0.6624302 0.7213078 1
3634  1.295082 -0.6624302 0.7213078 3
3635  1.295082 -0.6624302 0.7213078 2
3636  1.295082 -0.6624302 0.7213078 2
3637  1.295082 -0.6624302 0.7213078 2
3638  1.295082 -0.6624302 0.7213078 3
3639  1.295082 -0.6624302 0.7213078 1
3640  1.295082 -0.6624302 0.7213078 1
3641  1.295082 -0.6624302 0.7213078 3
3642  1.295082 -0.6624302 0.7213078 3
3643  1.295082 -0.6624302 0.7213078 1
3644  1.295082 -0.6624302 0.7213078 3
3645  1.295082 -0.6624302 0.7213078 1
3646  1.295082 -0.6624302 0.7213078 2
3647  1.295082 -0.6624302 0.7213078 2
3648  1.295082 -0.6624302 0.7213078 3
3649  1.295082 -0.6624302 0.7213078 3
3650  1.295082 -0.6624302 0.7213078 3
3651  1.295082 -0.6624302 0.7213078 2
3652  1.295082 -0.6624302 0.7213078 3
3653  1.295082 -0.6624302 0.7213078 3
3654  1.295082 -0.6624302 0.7213078 1
3655  1.295082 -0.6624302 0.7213078 3
3656  1.295082 -0.6624302 0.7213078 3
3657  1.295082 -0.6624302 0.7213078 3
3658  1.295082 -0.6624302 0.7213078 3
3659  1.295082 -0.6624302 0.7213078 2
3660  1.295082 -0.6624302 0.7213078 3
3661  1.295082 -0.6624302 0.7213078 2
3662  1.295082 -0.6624302 0.7213078 2
3663  1.295082 -0.6624302 0.7213078 3
3664  1.295082 -0.6624302 0.7213078 2
3665  1.295082 -0.6624302 0.7213078 1
3666  1.295082 -0.6624302 0.7213078 3
3667  1.295082 -0.6624302 0.7213078 1
3668  1.295082 -0.6624302 0.7213078 1
3669  1.295082 -0.6624302 0.7213078 3
3670  1.295082 -0.6624302 0.7213078 1
3671  1.295082 -0.6624302 0.7213078 2
3672  1.295082 -0.6624302 0.7213078 3
3673  1.295082 -0.6624302 0.7213078 2
3674  1.295082 -0.6624302 0.7213078 2
3675  1.295082 -0.6624302 0.7213078 3
3676  1.295082 -0.6624302 0.7213078 3
3677  1.291803 -0.6485037 0.7224095 3
3678  1.291803 -0.6485037 0.7224095 3
3679  1.291803 -0.6485037 0.7224095 2
3680  1.291803 -0.6485037 0.7224095 1
3681  1.291803 -0.6485037 0.7224095 2
3682  1.291803 -0.6485037 0.7224095 1
3683  1.291803 -0.6485037 0.7224095 2
3684  1.291803 -0.6485037 0.7224095 2
3685  1.291803 -0.6485037 0.7224095 2
3686  1.291803 -0.6485037 0.7224095 1
3687  1.291803 -0.6485037 0.7224095 2
3688  1.291803 -0.6485037 0.7224095 3
3689  1.291803 -0.6485037 0.7224095 2
3690  1.291803 -0.6485037 0.7224095 1
3691  1.291803 -0.6485037 0.7224095 1
3692  1.291803 -0.6485037 0.7224095 3
3693  1.291803 -0.6485037 0.7224095 3
3694  1.291803 -0.6485037 0.7224095 2
3695  1.291803 -0.6485037 0.7224095 3
3696  1.291803 -0.6485037 0.7224095 1
3697  1.291803 -0.6485037 0.7224095 3
3698  1.291803 -0.6485037 0.7224095 1
3699  1.291803 -0.6485037 0.7224095 1
3700  1.291803 -0.6485037 0.7224095 2
3701  1.291803 -0.6485037 0.7224095 1
3702  1.291803 -0.6485037 0.7224095 3
3703  1.291803 -0.6485037 0.7224095 3
3704  1.291803 -0.6485037 0.7224095 2
3705  1.291803 -0.6485037 0.7224095 2
3706  1.291803 -0.6485037 0.7224095 2
3707  1.291803 -0.6485037 0.7224095 2
3708  1.291803 -0.6485037 0.7224095 2
3709  1.291803 -0.6485037 0.7224095 2
3710  1.291803 -0.6485037 0.7224095 2
3711  1.291803 -0.6485037 0.7224095 1
3712  1.291803 -0.6485037 0.7224095 1
3713  1.291803 -0.6485037 0.7224095 2
3714  1.291803 -0.6485037 0.7224095 3
3715  1.291803 -0.6485037 0.7224095 1
3716  1.291803 -0.6485037 0.7224095 3
3717  1.291803 -0.6485037 0.7224095 1
3718  1.291803 -0.6485037 0.7224095 1
3719  1.291803 -0.6485037 0.7224095 1
3720  1.291803 -0.6485037 0.7224095 1
3721  1.291803 -0.6485037 0.7224095 2
3722  1.291803 -0.6485037 0.7224095 2
3723  1.291803 -0.6485037 0.7224095 2
3724  1.291803 -0.6485037 0.7224095 3
3725  1.291803 -0.6485037 0.7224095 3
3726  1.291803 -0.6485037 0.7224095 1
3727  1.291803 -0.6485037 0.7224095 3
3728  1.291803 -0.6485037 0.7224095 1
3729  1.291803 -0.6485037 0.7224095 2
3730  1.291803 -0.6485037 0.7224095 1
3731  1.291803 -0.6485037 0.7224095 2
3732  1.291803 -0.6485037 0.7224095 3
3733  1.291803 -0.6485037 0.7224095 2
3734  1.291803 -0.6485037 0.7224095 1
3735  1.291803 -0.6485037 0.7224095 2
3736  1.291803 -0.6485037 0.7224095 3
3737  1.291803 -0.6485037 0.7224095 3
3738  1.291803 -0.6485037 0.7224095 3
3739  1.291803 -0.6485037 0.7224095 3
3740  1.291803 -0.6485037 0.7224095 3
3741  1.291803 -0.6485037 0.7224095 3
3742  1.291803 -0.6485037 0.7224095 1
3743  1.291803 -0.6485037 0.7224095 3
3744  1.291803 -0.6485037 0.7224095 1
3745  1.291803 -0.6485037 0.7224095 2
3746  1.291803 -0.6485037 0.7224095 2
3747  1.291803 -0.6485037 0.7224095 1
3748  1.291803 -0.6485037 0.7224095 3
3749  1.291803 -0.6485037 0.7224095 3
3750  1.291803 -0.6485037 0.7224095 2
3751  1.291803 -0.6485037 0.7224095 2
3752  1.291803 -0.6485037 0.7224095 3
3753  1.291803 -0.6485037 0.7224095 1
3754  1.291803 -0.6485037 0.7224095 2
3755  1.291803 -0.6485037 0.7224095 2
3756  1.291803 -0.6485037 0.7224095 1
3757  1.291803 -0.6485037 0.7224095 3
3758  1.291803 -0.6485037 0.7224095 1
3759  1.291803 -0.6485037 0.7224095 3
3760  1.291803 -0.6485037 0.7224095 1
3761  1.291803 -0.6485037 0.7224095 3
3762  1.291803 -0.6485037 0.7224095 1
3763  1.291803 -0.6485037 0.7224095 3
3764  1.291803 -0.6485037 0.7224095 3
3765  1.291803 -0.6485037 0.7224095 1
3766  1.291803 -0.6485037 0.7224095 3
3767  1.291803 -0.6485037 0.7224095 3
3768  1.291803 -0.6485037 0.7224095 1
3769  1.291803 -0.6485037 0.7224095 1
3770  1.291803 -0.6485037 0.7224095 3
3771  1.291803 -0.6485037 0.7224095 1
3772  1.291803 -0.6485037 0.7224095 2
3773  1.291803 -0.6485037 0.7224095 3
3774  1.291803 -0.6485037 0.7224095 1
3775  1.291803 -0.6485037 0.7224095 1
3776  1.291803 -0.6485037 0.7224095 2
3777  1.291803 -0.6485037 0.7224095 2
3778  1.291803 -0.6485037 0.7224095 3
3779  1.291803 -0.6485037 0.7224095 3
3780  1.291803 -0.6485037 0.7224095 3
3781  1.291803 -0.6485037 0.7224095 2
3782  1.291803 -0.6485037 0.7224095 1
3783  1.291803 -0.6485037 0.7224095 2
3784  1.291803 -0.6485037 0.7224095 3
3785  1.291803 -0.6485037 0.7224095 2
3786  1.291803 -0.6485037 0.7224095 1
3787  1.291803 -0.6485037 0.7224095 1
3788  1.291803 -0.6485037 0.7224095 1
3789  1.291803 -0.6485037 0.7224095 2
3790  1.291803 -0.6485037 0.7224095 1
3791  1.291803 -0.6485037 0.7224095 3
3792  1.291803 -0.6485037 0.7224095 1
3793  1.291803 -0.6485037 0.7224095 1
3794  1.291803 -0.6485037 0.7224095 1
3795  1.291803 -0.6485037 0.7224095 3
3796  1.291803 -0.6485037 0.7224095 3
3797  1.291803 -0.6485037 0.7224095 2
3798  1.291803 -0.6485037 0.7224095 2
3799  1.291803 -0.6485037 0.7224095 3
3800  1.291803 -0.6485037 0.7224095 2
3801  1.291803 -0.6485037 0.7224095 2
3802  1.291803 -0.6485037 0.7224095 2
3803  1.291803 -0.6485037 0.7224095 2
3804  1.291803 -0.6485037 0.7224095 1
3805  1.291803 -0.6485037 0.7224095 3
3806  1.291803 -0.6485037 0.7224095 3
3807  1.291803 -0.6485037 0.7224095 3
3808  1.291803 -0.6485037 0.7224095 2
3809  1.291803 -0.6485037 0.7224095 1
3810  1.291803 -0.6485037 0.7224095 3
3811  1.291803 -0.6485037 0.7224095 3
3812  1.291803 -0.6485037 0.7224095 2
3813  1.291803 -0.6485037 0.7224095 3
3814  1.291803 -0.6485037 0.7224095 1
3815  1.291803 -0.6485037 0.7224095 1
3816  1.291803 -0.6485037 0.7224095 2
3817  1.291803 -0.6485037 0.7224095 2
3818  1.291803 -0.6485037 0.7224095 1
3819  1.291803 -0.6485037 0.7224095 2
3820  1.291803 -0.6485037 0.7224095 2
3821  1.291803 -0.6485037 0.7224095 3
3822  1.291803 -0.6485037 0.7224095 3
3823  1.291803 -0.6485037 0.7224095 1
3824  1.291803 -0.6485037 0.7224095 1
3825  1.291803 -0.6485037 0.7224095 2
3826  1.291803 -0.6485037 0.7224095 2
3827  1.291803 -0.6485037 0.7224095 2
3828  1.291803 -0.6485037 0.7224095 1
3829  1.291803 -0.6485037 0.7224095 3
3830  1.291803 -0.6485037 0.7224095 3
3831  1.291803 -0.6485037 0.7224095 3
3832  1.291803 -0.6485037 0.7224095 2
3833  1.291803 -0.6485037 0.7224095 1
3834  1.291803 -0.6485037 0.7224095 1
3835  1.291803 -0.6485037 0.7224095 1
3836  1.291803 -0.6485037 0.7224095 1
3837  1.291803 -0.6485037 0.7224095 3
3838  1.291803 -0.6485037 0.7224095 2
3839  1.291803 -0.6485037 0.7224095 2
3840  1.291803 -0.6485037 0.7224095 1
3841  1.291803 -0.6485037 0.7224095 3
3842  1.291803 -0.6485037 0.7224095 2
3843  1.291803 -0.6485037 0.7224095 1
3844  1.291803 -0.6485037 0.7224095 2
3845  1.291803 -0.6485037 0.7224095 2
3846  1.291803 -0.6485037 0.7224095 3
3847  1.291803 -0.6485037 0.7224095 3
3848  1.291803 -0.6485037 0.7224095 2
3849  1.291803 -0.6485037 0.7224095 1
3850  1.291803 -0.6485037 0.7224095 2
3851  1.291803 -0.6485037 0.7224095 2
3852  1.291803 -0.6485037 0.7224095 1
3853  1.291803 -0.6485037 0.7224095 3
3854  1.291803 -0.6485037 0.7224095 3
3855  1.291803 -0.6485037 0.7224095 1
3856  1.291803 -0.6485037 0.7224095 2
3857  1.291803 -0.6485037 0.7224095 3
3858  1.291803 -0.6485037 0.7224095 1
3859  1.291803 -0.6485037 0.7224095 3
3860  1.291803 -0.6485037 0.7224095 3
3861  1.291803 -0.6485037 0.7224095 3
3862  1.291803 -0.6485037 0.7224095 2
3863  1.291803 -0.6485037 0.7224095 2
3864  1.291803 -0.6485037 0.7224095 3
3865  1.291803 -0.6485037 0.7224095 2
3866  1.291803 -0.6485037 0.7224095 2
3867  1.291803 -0.6485037 0.7224095 3
3868  1.291803 -0.6485037 0.7224095 3
3869  1.291803 -0.6485037 0.7224095 3
3870  1.291803 -0.6485037 0.7224095 3
3871  1.291803 -0.6485037 0.7224095 2
3872  1.291803 -0.6485037 0.7224095 1
3873  1.291803 -0.6485037 0.7224095 2
3874  1.291803 -0.6485037 0.7224095 2
3875  1.291803 -0.6485037 0.7224095 1
3876  1.291803 -0.6485037 0.7224095 3
3877  1.291803 -0.6485037 0.7224095 1
3878  1.291803 -0.6485037 0.7224095 1
3879  1.291803 -0.6485037 0.7224095 3
3880  1.291803 -0.6485037 0.7224095 3
3881  1.291803 -0.6485037 0.7224095 2
3882  1.291803 -0.6485037 0.7224095 1
3883  1.291803 -0.6485037 0.7224095 1
3884  1.291803 -0.6485037 0.7224095 1
3885  1.291803 -0.6485037 0.7224095 3
3886  1.291803 -0.6485037 0.7224095 2
3887  1.291803 -0.6485037 0.7224095 1
3888  1.291803 -0.6485037 0.7224095 2
3889  1.291803 -0.6485037 0.7224095 2
3890  1.291803 -0.6485037 0.7224095 2
3891  1.291803 -0.6485037 0.7224095 3
3892  1.291803 -0.6485037 0.7224095 2
3893  1.291803 -0.6485037 0.7224095 3
3894  1.291803 -0.6485037 0.7224095 2
3895  1.291803 -0.6485037 0.7224095 1
3896  1.291803 -0.6485037 0.7224095 2
3897  1.291803 -0.6485037 0.7224095 3
3898  1.291803 -0.6485037 0.7224095 2
3899  1.291803 -0.6485037 0.7224095 2
3900  1.291803 -0.6485037 0.7224095 2
3901  1.291803 -0.6485037 0.7224095 2
3902  1.291803 -0.6485037 0.7224095 3
3903  1.291803 -0.6485037 0.7224095 2
3904  1.291803 -0.6485037 0.7224095 1
3905  1.291803 -0.6485037 0.7224095 3
3906  1.291803 -0.6485037 0.7224095 1
3907  1.291803 -0.6485037 0.7224095 1
3908  1.291803 -0.6485037 0.7224095 2
3909  1.291803 -0.6485037 0.7224095 2
3910  1.291803 -0.6485037 0.7224095 3
3911  1.291803 -0.6485037 0.7224095 3
3912  1.291803 -0.6485037 0.7224095 1
3913  1.291803 -0.6485037 0.7224095 2
3914  1.291803 -0.6485037 0.7224095 3
3915  1.291803 -0.6485037 0.7224095 1
3916  1.291803 -0.6485037 0.7224095 2
3917  1.291803 -0.6485037 0.7224095 3
3918  1.291803 -0.6485037 0.7224095 2
3919  1.291803 -0.6485037 0.7224095 2
3920  1.291803 -0.6485037 0.7224095 1
3921  1.291803 -0.6485037 0.7224095 3
3922  1.291803 -0.6485037 0.7224095 2
3923  1.291803 -0.6485037 0.7224095 2
3924  1.291803 -0.6485037 0.7224095 1
3925  1.291803 -0.6485037 0.7224095 1
3926  1.291803 -0.6485037 0.7224095 1
3927  1.291803 -0.6485037 0.7224095 3
3928  1.291803 -0.6485037 0.7224095 1
3929  1.291803 -0.6485037 0.7224095 1
3930  1.291803 -0.6485037 0.7224095 2
3931  1.291803 -0.6485037 0.7224095 2
3932  1.291803 -0.6485037 0.7224095 3
3933  1.291803 -0.6485037 0.7224095 1
3934  1.291803 -0.6485037 0.7224095 3
3935  1.291803 -0.6485037 0.7224095 3
3936  1.291803 -0.6485037 0.7224095 1
3937  1.291803 -0.6485037 0.7224095 3
3938  1.291803 -0.6485037 0.7224095 2
3939  1.291803 -0.6485037 0.7224095 1
3940  1.291803 -0.6485037 0.7224095 2
3941  1.291803 -0.6485037 0.7224095 1
3942  1.291803 -0.6485037 0.7224095 2
3943  1.291803 -0.6485037 0.7224095 2
3944  1.291803 -0.6485037 0.7224095 1
3945  1.291803 -0.6485037 0.7224095 3
3946  1.291803 -0.6485037 0.7224095 2
3947  1.291803 -0.6485037 0.7224095 2
3948  1.291803 -0.6485037 0.7224095 2
3949  1.291803 -0.6485037 0.7224095 3
3950  1.291803 -0.6485037 0.7224095 3
3951  1.291803 -0.6485037 0.7224095 1
3952  1.291803 -0.6485037 0.7224095 1
3953  1.291803 -0.6485037 0.7224095 3
3954  1.291803 -0.6485037 0.7224095 1
3955  1.291803 -0.6485037 0.7224095 3
3956  1.291803 -0.6485037 0.7224095 3
3957  1.291803 -0.6485037 0.7224095 3
3958  1.291803 -0.6485037 0.7224095 3
3959  1.291803 -0.6485037 0.7224095 3
3960  1.291803 -0.6485037 0.7224095 1
3961  1.291803 -0.6485037 0.7224095 1
3962  1.291803 -0.6485037 0.7224095 2
3963  1.291803 -0.6485037 0.7224095 2
3964  1.291803 -0.6485037 0.7224095 2
3965  1.291803 -0.6485037 0.7224095 3
3966  1.291803 -0.6485037 0.7224095 1
3967  1.291803 -0.6485037 0.7224095 2
3968  1.291803 -0.6485037 0.7224095 1
3969  1.291803 -0.6485037 0.7224095 2
3970  1.291803 -0.6485037 0.7224095 3
3971  1.291803 -0.6485037 0.7224095 3
3972  1.291803 -0.6485037 0.7224095 2
3973  1.291803 -0.6485037 0.7224095 3
3974  1.291803 -0.6485037 0.7224095 1
3975  1.291803 -0.6485037 0.7224095 2
3976  1.291803 -0.6485037 0.7224095 3
3977  1.291803 -0.6485037 0.7224095 2
3978  1.291803 -0.6485037 0.7224095 3
3979  1.291803 -0.6485037 0.7224095 2
3980  1.291803 -0.6485037 0.7224095 1
3981  1.291803 -0.6485037 0.7224095 3
3982  1.291803 -0.6485037 0.7224095 2
3983  1.291803 -0.6485037 0.7224095 3
3984  1.291803 -0.6485037 0.7224095 1
3985  1.291803 -0.6485037 0.7224095 3
3986  1.291803 -0.6485037 0.7224095 3
3987  1.291803 -0.6485037 0.7224095 2
3988  1.291803 -0.6485037 0.7224095 1
3989  1.291803 -0.6485037 0.7224095 3
3990  1.291803 -0.6485037 0.7224095 1
3991  1.291803 -0.6485037 0.7224095 2
3992  1.291803 -0.6485037 0.7224095 2
3993  1.291803 -0.6485037 0.7224095 3
3994  1.291803 -0.6485037 0.7224095 3
3995  1.291803 -0.6485037 0.7224095 2
3996  1.291803 -0.6485037 0.7224095 1
3997  1.291803 -0.6485037 0.7224095 2
3998  1.291803 -0.6485037 0.7224095 1
3999  1.291803 -0.6485037 0.7224095 1
4000  1.291803 -0.6485037 0.7224095 3
4001  1.291803 -0.6485037 0.7224095 1
4002  1.291803 -0.6485037 0.7224095 3
4003  1.291803 -0.6485037 0.7224095 3
4004  1.291803 -0.6485037 0.7224095 3
4005  1.291803 -0.6485037 0.7224095 3
4006  1.291803 -0.6485037 0.7224095 1
4007  1.291803 -0.6485037 0.7224095 1
4008  1.291803 -0.6485037 0.7224095 3
4009  1.291803 -0.6485037 0.7224095 1
4010  1.291803 -0.6485037 0.7224095 1
4011  1.291803 -0.6485037 0.7224095 2
4012  1.291803 -0.6485037 0.7224095 1
4013  1.291803 -0.6485037 0.7224095 2
4014  1.291803 -0.6485037 0.7224095 1
4015  1.291803 -0.6485037 0.7224095 2
4016  1.291803 -0.6485037 0.7224095 2
4017  1.291803 -0.6485037 0.7224095 2
4018  1.291803 -0.6485037 0.7224095 3
4019  1.291803 -0.6485037 0.7224095 2
4020  1.291803 -0.6485037 0.7224095 2
4021  1.291803 -0.6485037 0.7224095 1
4022  1.291803 -0.6485037 0.7224095 3
4023  1.291803 -0.6485037 0.7224095 1
4024  1.291803 -0.6485037 0.7224095 1
4025  1.291803 -0.6485037 0.7224095 1
4026  1.291803 -0.6485037 0.7224095 1
4027  1.291803 -0.6485037 0.7224095 3
4028  1.291803 -0.6485037 0.7224095 2
4029  1.291803 -0.6485037 0.7224095 2
4030  1.291803 -0.6485037 0.7224095 1
4031  1.291803 -0.6485037 0.7224095 2
4032  1.291803 -0.6485037 0.7224095 2
4033  1.291803 -0.6485037 0.7224095 3
4034  1.291803 -0.6485037 0.7224095 2
4035  1.291803 -0.6485037 0.7224095 1
4036  1.291803 -0.6485037 0.7224095 2
4037  1.291803 -0.6485037 0.7224095 2
4038  1.291803 -0.6485037 0.7224095 1
4039  1.291803 -0.6485037 0.7224095 2
4040  1.291803 -0.6485037 0.7224095 2
4041  1.291803 -0.6485037 0.7224095 1
4042  1.291803 -0.6485037 0.7224095 1
4043  1.291803 -0.6485037 0.7224095 3
4044  1.291803 -0.6485037 0.7224095 2
4045  1.291803 -0.6485037 0.7224095 3
4046  1.291803 -0.6485037 0.7224095 1
4047  1.291803 -0.6485037 0.7224095 3
4048  1.291803 -0.6485037 0.7224095 3
4049  1.291803 -0.6485037 0.7224095 2
4050  1.291803 -0.6485037 0.7224095 3
4051  1.291803 -0.6485037 0.7224095 2
4052  1.291803 -0.6485037 0.7224095 1
4053  1.291803 -0.6485037 0.7224095 1
4054  1.291803 -0.6485037 0.7224095 1
4055  1.291803 -0.6485037 0.7224095 1
4056  1.291803 -0.6485037 0.7224095 1
4057  1.291803 -0.6485037 0.7224095 3
4058  1.291803 -0.6485037 0.7224095 3
4059  1.291803 -0.6485037 0.7224095 3
4060  1.291803 -0.6485037 0.7224095 2
4061  1.291803 -0.6485037 0.7224095 2
4062  1.291803 -0.6485037 0.7224095 3
4063  1.291803 -0.6485037 0.7224095 1
4064  1.291803 -0.6485037 0.7224095 1
4065  1.291803 -0.6485037 0.7224095 2
4066  1.291803 -0.6485037 0.7224095 2
4067  1.291803 -0.6485037 0.7224095 2
4068  1.291803 -0.6485037 0.7224095 3
4069  1.291803 -0.6485037 0.7224095 3
4070  1.291803 -0.6485037 0.7224095 3
4071  1.291803 -0.6485037 0.7224095 3
4072  1.291803 -0.6485037 0.7224095 1
4073  1.291803 -0.6485037 0.7224095 3
4074  1.291803 -0.6485037 0.7224095 2
4075  1.291803 -0.6485037 0.7224095 2
4076  1.291803 -0.6485037 0.7224095 2
4077  1.291803 -0.6485037 0.7224095 3
4078  1.291803 -0.6485037 0.7224095 2
4079  1.291803 -0.6485037 0.7224095 3
4080  1.291803 -0.6485037 0.7224095 3
4081  1.291803 -0.6485037 0.7224095 2
4082  1.291803 -0.6485037 0.7224095 3
4083  1.291803 -0.6485037 0.7224095 3
4084  1.291803 -0.6485037 0.7224095 2
4085  1.291803 -0.6485037 0.7224095 1
4086  1.291803 -0.6485037 0.7224095 3
4087  1.291803 -0.6485037 0.7224095 1
4088  1.291803 -0.6485037 0.7224095 1
4089  1.291803 -0.6485037 0.7224095 2
4090  1.291803 -0.6485037 0.7224095 2
4091  1.291803 -0.6485037 0.7224095 3
4092  1.291803 -0.6485037 0.7224095 2
4093  1.291803 -0.6485037 0.7224095 2
4094  1.291803 -0.6485037 0.7224095 1
4095  1.291803 -0.6485037 0.7224095 3
4096  1.291803 -0.6485037 0.7224095 2
4097  1.291803 -0.6485037 0.7224095 1
4098  1.291803 -0.6485037 0.7224095 2
4099  1.291803 -0.6485037 0.7224095 2
4100  1.291803 -0.6485037 0.7224095 1
4101  1.291803 -0.6485037 0.7224095 2
4102  1.291803 -0.6485037 0.7224095 2
4103  1.291803 -0.6485037 0.7224095 1
4104  1.291803 -0.6485037 0.7224095 1
4105  1.291803 -0.6485037 0.7224095 2
4106  1.291803 -0.6485037 0.7224095 1
4107  1.291803 -0.6485037 0.7224095 1
4108  1.291803 -0.6485037 0.7224095 1
4109  1.291803 -0.6485037 0.7224095 3
4110  1.291803 -0.6485037 0.7224095 1
4111  1.291803 -0.6485037 0.7224095 2
4112  1.291803 -0.6485037 0.7224095 2
4113  1.291803 -0.6485037 0.7224095 2
4114  1.291803 -0.6485037 0.7224095 3
4115  1.291803 -0.6485037 0.7224095 2
4116  1.291803 -0.6485037 0.7224095 2
4117  1.291803 -0.6485037 0.7224095 1
4118  1.291803 -0.6485037 0.7224095 1
4119  1.291803 -0.6485037 0.7224095 1
4120  1.291803 -0.6485037 0.7224095 1
4121  1.291803 -0.6485037 0.7224095 3
4122  1.291803 -0.6485037 0.7224095 3
4123  1.291803 -0.6485037 0.7224095 3
4124  1.291803 -0.6485037 0.7224095 2
4125  1.291803 -0.6485037 0.7224095 1
4126  1.291803 -0.6485037 0.7224095 1
4127  1.291803 -0.6485037 0.7224095 3
4128  1.291803 -0.6485037 0.7224095 1
4129  1.291803 -0.6485037 0.7224095 1
4130  1.291803 -0.6485037 0.7224095 3
4131  1.291803 -0.6485037 0.7224095 3
4132  1.291803 -0.6485037 0.7224095 1
4133  1.291803 -0.6485037 0.7224095 1
4134  1.291803 -0.6485037 0.7224095 1
4135  1.291803 -0.6485037 0.7224095 3
4136  1.291803 -0.6485037 0.7224095 2
4137  1.291803 -0.6485037 0.7224095 3
4138  1.291803 -0.6485037 0.7224095 3
4139  1.291803 -0.6485037 0.7224095 2
4140  1.291803 -0.6485037 0.7224095 2
4141  1.291803 -0.6485037 0.7224095 3
4142  1.291803 -0.6485037 0.7224095 3
4143  1.291803 -0.6485037 0.7224095 1
4144  1.291803 -0.6485037 0.7224095 2
4145  1.291803 -0.6485037 0.7224095 1
4146  1.291803 -0.6485037 0.7224095 1
4147  1.291803 -0.6485037 0.7224095 2
4148  1.291803 -0.6485037 0.7224095 3
4149  1.291803 -0.6485037 0.7224095 2
4150  1.291803 -0.6485037 0.7224095 1
4151  1.291803 -0.6485037 0.7224095 2
4152  1.291803 -0.6485037 0.7224095 1
4153  1.291803 -0.6485037 0.7224095 3
4154  1.291803 -0.6485037 0.7224095 1
4155  1.291803 -0.6485037 0.7224095 3
4156  1.291803 -0.6485037 0.7224095 2
4157  1.291803 -0.6485037 0.7224095 2
4158  1.291803 -0.6485037 0.7224095 3
4159  1.291803 -0.6485037 0.7224095 2
4160  1.291803 -0.6485037 0.7224095 1
4161  1.291803 -0.6485037 0.7224095 1
4162  1.291803 -0.6485037 0.7224095 2
4163  1.291803 -0.6485037 0.7224095 3
4164  1.291803 -0.6485037 0.7224095 1
4165  1.291803 -0.6485037 0.7224095 1
4166  1.291803 -0.6485037 0.7224095 2
4167  1.291803 -0.6485037 0.7224095 3
4168  1.291803 -0.6485037 0.7224095 2
4169  1.291803 -0.6485037 0.7224095 1
4170  1.291803 -0.6485037 0.7224095 1
4171  1.291803 -0.6485037 0.7224095 2
4172  1.291803 -0.6485037 0.7224095 3
4173  1.291803 -0.6485037 0.7224095 1
4174  1.291803 -0.6485037 0.7224095 1
4175  1.291803 -0.6485037 0.7224095 3
4176  1.291803 -0.6485037 0.7224095 1
4177  1.291803 -0.6485037 0.7224095 2
4178  1.291803 -0.6485037 0.7224095 3
4179  1.291803 -0.6485037 0.7224095 2
4180  1.291803 -0.6485037 0.7224095 2
4181  1.291803 -0.6485037 0.7224095 3
4182  1.291803 -0.6485037 0.7224095 1
4183  1.291803 -0.6485037 0.7224095 3
4184  1.291803 -0.6485037 0.7224095 1
4185  1.291803 -0.6485037 0.7224095 1
4186  1.291803 -0.6485037 0.7224095 2
4187  1.291803 -0.6485037 0.7224095 2
4188  1.291803 -0.6485037 0.7224095 1
4189  1.291803 -0.6485037 0.7224095 3
4190  1.291803 -0.6485037 0.7224095 2
4191  1.291803 -0.6485037 0.7224095 1
4192  1.291803 -0.6485037 0.7224095 3
4193  1.291803 -0.6485037 0.7224095 3
4194  1.291803 -0.6485037 0.7224095 1
4195  1.291803 -0.6485037 0.7224095 3
4196  1.291803 -0.6485037 0.7224095 2
4197  1.291803 -0.6485037 0.7224095 1
4198  1.291803 -0.6485037 0.7224095 1
4199  1.291803 -0.6485037 0.7224095 3
4200  1.291803 -0.6485037 0.7224095 3
4201  1.291803 -0.6485037 0.7224095 2
4202  1.291803 -0.6485037 0.7224095 1
4203  1.291803 -0.6485037 0.7224095 1
4204  1.291803 -0.6485037 0.7224095 2
4205  1.291803 -0.6485037 0.7224095 3
4206  1.291803 -0.6485037 0.7224095 3
4207  1.291803 -0.6485037 0.7224095 3
4208  1.291803 -0.6485037 0.7224095 1
4209  1.291803 -0.6485037 0.7224095 1
4210  1.291803 -0.6485037 0.7224095 2
4211  1.291803 -0.6485037 0.7224095 1
4212  1.291803 -0.6485037 0.7224095 1
4213  1.291803 -0.6485037 0.7224095 1
4214  1.291803 -0.6485037 0.7224095 1
4215  1.291803 -0.6485037 0.7224095 2
4216  1.291803 -0.6485037 0.7224095 3
4217  1.291803 -0.6485037 0.7224095 3
4218  1.291803 -0.6485037 0.7224095 1
4219  1.291803 -0.6485037 0.7224095 2
4220  1.291803 -0.6485037 0.7224095 2
4221  1.291803 -0.6485037 0.7224095 3
4222  1.291803 -0.6485037 0.7224095 3
4223  1.291803 -0.6485037 0.7224095 1
4224  1.291803 -0.6485037 0.7224095 1
4225  1.291803 -0.6485037 0.7224095 1
4226  1.291803 -0.6485037 0.7224095 2
4227  1.291803 -0.6485037 0.7224095 1
4228  1.291803 -0.6485037 0.7224095 1
4229  1.291803 -0.6485037 0.7224095 3
4230  1.291803 -0.6485037 0.7224095 2
4231  1.291803 -0.6485037 0.7224095 2
4232  1.291803 -0.6485037 0.7224095 2
4233  1.291803 -0.6485037 0.7224095 1
4234  1.291803 -0.6485037 0.7224095 1
4235  1.291803 -0.6485037 0.7224095 1
4236  1.291803 -0.6485037 0.7224095 3
4237  1.291803 -0.6485037 0.7224095 3
4238  1.291803 -0.6485037 0.7224095 2
4239  1.291803 -0.6485037 0.7224095 2
4240  1.291803 -0.6485037 0.7224095 1
4241  1.291803 -0.6485037 0.7224095 2
4242  1.291803 -0.6485037 0.7224095 3
4243  1.291803 -0.6485037 0.7224095 2
4244  1.291803 -0.6485037 0.7224095 1
4245  1.291803 -0.6485037 0.7224095 3
4246  1.291803 -0.6485037 0.7224095 2
4247  1.291803 -0.6485037 0.7224095 1
4248  1.291803 -0.6485037 0.7224095 2
4249  1.291803 -0.6485037 0.7224095 1
4250  1.291803 -0.6485037 0.7224095 3
4251  1.291803 -0.6485037 0.7224095 2
4252  1.291803 -0.6485037 0.7224095 1
4253  1.291803 -0.6485037 0.7224095 2
4254  1.291803 -0.6485037 0.7224095 3
4255  1.291803 -0.6485037 0.7224095 3
4256  1.291803 -0.6485037 0.7224095 3
4257  1.291803 -0.6485037 0.7224095 3
4258  1.291803 -0.6485037 0.7224095 1
4259  1.291803 -0.6485037 0.7224095 2
4260  1.291803 -0.6485037 0.7224095 2
4261  1.291803 -0.6485037 0.7224095 3
4262  1.291803 -0.6485037 0.7224095 1
4263  1.291803 -0.6485037 0.7224095 1
4264  1.291803 -0.6485037 0.7224095 2
4265  1.291803 -0.6485037 0.7224095 3
4266  1.291803 -0.6485037 0.7224095 2
4267  1.291803 -0.6485037 0.7224095 1
4268  1.291803 -0.6485037 0.7224095 2
4269  1.291803 -0.6485037 0.7224095 2
4270  1.291803 -0.6485037 0.7224095 3
4271  1.291803 -0.6485037 0.7224095 3
4272  1.291803 -0.6485037 0.7224095 1
4273  1.291803 -0.6485037 0.7224095 1
4274  1.291803 -0.6485037 0.7224095 3
4275  1.291803 -0.6485037 0.7224095 1
4276  1.291803 -0.6485037 0.7224095 1
4277  1.291803 -0.6485037 0.7224095 1
4278  1.291803 -0.6485037 0.7224095 2
4279  1.291803 -0.6485037 0.7224095 1
4280  1.291803 -0.6485037 0.7224095 1
4281  1.291803 -0.6485037 0.7224095 3
4282  1.291803 -0.6485037 0.7224095 3
4283  1.291803 -0.6485037 0.7224095 1
4284  1.291803 -0.6485037 0.7224095 2
4285  1.291803 -0.6485037 0.7224095 3
4286  1.291803 -0.6485037 0.7224095 1
4287  1.291803 -0.6485037 0.7224095 2
4288  1.291803 -0.6485037 0.7224095 3
4289  1.291803 -0.6485037 0.7224095 3
4290  1.291803 -0.6485037 0.7224095 2
4291  1.291803 -0.6485037 0.7224095 2
4292  1.291803 -0.6485037 0.7224095 2
4293  1.291803 -0.6485037 0.7224095 2
4294  1.291803 -0.6485037 0.7224095 2
4295  1.291803 -0.6485037 0.7224095 1
4296  1.291803 -0.6485037 0.7224095 2
4297  1.291803 -0.6485037 0.7224095 2
4298  1.291803 -0.6485037 0.7224095 1
4299  1.291803 -0.6485037 0.7224095 3
4300  1.291803 -0.6485037 0.7224095 1
4301  1.291803 -0.6485037 0.7224095 1
4302  1.291803 -0.6485037 0.7224095 2
4303  1.291803 -0.6485037 0.7224095 3
4304  1.291803 -0.6485037 0.7224095 2
4305  1.291803 -0.6485037 0.7224095 1
4306  1.291803 -0.6485037 0.7224095 2
4307  1.291803 -0.6485037 0.7224095 2
4308  1.291803 -0.6485037 0.7224095 2
4309  1.291803 -0.6485037 0.7224095 3
4310  1.291803 -0.6485037 0.7224095 1
4311  1.291803 -0.6485037 0.7224095 2
4312  1.291803 -0.6485037 0.7224095 3
4313  1.291803 -0.6485037 0.7224095 2
4314  1.291803 -0.6485037 0.7224095 1
4315  1.291803 -0.6485037 0.7224095 2
4316  1.291803 -0.6485037 0.7224095 1
4317  1.291803 -0.6485037 0.7224095 1
4318  1.291803 -0.6485037 0.7224095 1
4319  1.291803 -0.6485037 0.7224095 3
4320  1.291803 -0.6485037 0.7224095 2
4321  1.291803 -0.6485037 0.7224095 3
4322  1.291803 -0.6485037 0.7224095 3
4323  1.291803 -0.6485037 0.7224095 2
4324  1.291803 -0.6485037 0.7224095 2
4325  1.291803 -0.6485037 0.7224095 2
4326  1.291803 -0.6485037 0.7224095 1
4327  1.291803 -0.6485037 0.7224095 1
4328  1.291803 -0.6485037 0.7224095 1
4329  1.291803 -0.6485037 0.7224095 2
4330  1.291803 -0.6485037 0.7224095 1
4331  1.291803 -0.6485037 0.7224095 3
4332  1.291803 -0.6485037 0.7224095 2
4333  1.291803 -0.6485037 0.7224095 2
4334  1.291803 -0.6485037 0.7224095 1
4335  1.291803 -0.6485037 0.7224095 1
4336  1.291803 -0.6485037 0.7224095 1
4337  1.291803 -0.6485037 0.7224095 2
4338  1.291803 -0.6485037 0.7224095 1
4339  1.291803 -0.6485037 0.7224095 2
4340  1.291803 -0.6485037 0.7224095 3
4341  1.291803 -0.6485037 0.7224095 2
4342  1.291803 -0.6485037 0.7224095 1
4343  1.291803 -0.6485037 0.7224095 3
4344  1.291803 -0.6485037 0.7224095 2
4345  1.291803 -0.6485037 0.7224095 2
4346  1.291803 -0.6485037 0.7224095 1
4347  1.291803 -0.6485037 0.7224095 1
4348  1.291803 -0.6485037 0.7224095 1
4349  1.291803 -0.6485037 0.7224095 2
4350  1.291803 -0.6485037 0.7224095 3
4351  1.291803 -0.6485037 0.7224095 2
4352  1.291803 -0.6485037 0.7224095 3
4353  1.291803 -0.6485037 0.7224095 1
4354  1.291803 -0.6485037 0.7224095 3
4355  1.291803 -0.6485037 0.7224095 3
4356  1.291803 -0.6485037 0.7224095 2
4357  1.291803 -0.6485037 0.7224095 3
4358  1.291803 -0.6485037 0.7224095 1
4359  1.291803 -0.6485037 0.7224095 1
4360  1.291803 -0.6485037 0.7224095 3
4361  1.291803 -0.6485037 0.7224095 1
4362  1.291803 -0.6485037 0.7224095 2
4363  1.291803 -0.6485037 0.7224095 1
4364  1.291803 -0.6485037 0.7224095 1
4365  1.291803 -0.6485037 0.7224095 3
4366  1.291803 -0.6485037 0.7224095 1
4367  1.291803 -0.6485037 0.7224095 1
4368  1.291803 -0.6485037 0.7224095 1
4369  1.291803 -0.6485037 0.7224095 1
4370  1.291803 -0.6485037 0.7224095 3
4371  1.291803 -0.6485037 0.7224095 1
4372  1.291803 -0.6485037 0.7224095 1
4373  1.291803 -0.6485037 0.7224095 2
4374  1.291803 -0.6485037 0.7224095 2
4375  1.291803 -0.6485037 0.7224095 3
4376  1.291803 -0.6485037 0.7224095 1
4377  1.291803 -0.6485037 0.7224095 2
4378  1.291803 -0.6485037 0.7224095 1
4379  1.291803 -0.6485037 0.7224095 2
4380  1.291803 -0.6485037 0.7224095 2
4381  1.291803 -0.6485037 0.7224095 2
4382  1.291803 -0.6485037 0.7224095 1
4383  1.291803 -0.6485037 0.7224095 1
4384  1.291803 -0.6485037 0.7224095 2
4385  1.291803 -0.6485037 0.7224095 1
4386  1.291803 -0.6485037 0.7224095 3
4387  1.291803 -0.6485037 0.7224095 1
4388  1.291803 -0.6485037 0.7224095 2
4389  1.291803 -0.6485037 0.7224095 1
4390  1.291803 -0.6485037 0.7224095 3
4391  1.291803 -0.6485037 0.7224095 1
4392  1.291803 -0.6485037 0.7224095 1
4393  1.291803 -0.6485037 0.7224095 2
4394  1.291803 -0.6485037 0.7224095 3
4395  1.291803 -0.6485037 0.7224095 1
4396  1.291803 -0.6485037 0.7224095 3
4397  1.291803 -0.6485037 0.7224095 2
4398  1.291803 -0.6485037 0.7224095 2
4399  1.291803 -0.6485037 0.7224095 1
4400  1.291803 -0.6485037 0.7224095 1
4401  1.291803 -0.6485037 0.7224095 3
4402  1.291803 -0.6485037 0.7224095 3
4403  1.291803 -0.6485037 0.7224095 2
4404  1.291803 -0.6485037 0.7224095 1
4405  1.291803 -0.6485037 0.7224095 1
4406  1.291803 -0.6485037 0.7224095 3
4407  1.291803 -0.6485037 0.7224095 2
4408  1.291803 -0.6485037 0.7224095 1
4409  1.291803 -0.6485037 0.7224095 1
4410  1.291803 -0.6485037 0.7224095 2
4411  1.291803 -0.6485037 0.7224095 2
4412  1.291803 -0.6485037 0.7224095 1
4413  1.291803 -0.6485037 0.7224095 3
4414  1.291803 -0.6485037 0.7224095 2
4415  1.291803 -0.6485037 0.7224095 1
4416  1.291803 -0.6485037 0.7224095 2
4417  1.291803 -0.6485037 0.7224095 3
4418  1.291803 -0.6485037 0.7224095 1
4419  1.291803 -0.6485037 0.7224095 3
4420  1.291803 -0.6485037 0.7224095 1
4421  1.291803 -0.6485037 0.7224095 3
4422  1.291803 -0.6485037 0.7224095 2
4423  1.291803 -0.6485037 0.7224095 1
4424  1.291803 -0.6485037 0.7224095 2
4425  1.291803 -0.6485037 0.7224095 1
4426  1.291803 -0.6485037 0.7224095 3
4427  1.291803 -0.6485037 0.7224095 1
4428  1.291803 -0.6485037 0.7224095 3
4429  1.291803 -0.6485037 0.7224095 1
4430  1.291803 -0.6485037 0.7224095 1
4431  1.291803 -0.6485037 0.7224095 2
4432  1.291803 -0.6485037 0.7224095 1
4433  1.291803 -0.6485037 0.7224095 3
4434  1.291803 -0.6485037 0.7224095 3
4435  1.291803 -0.6485037 0.7224095 2
4436  1.291803 -0.6485037 0.7224095 3
4437  1.291803 -0.6485037 0.7224095 1
4438  1.291803 -0.6485037 0.7224095 2
4439  1.291803 -0.6485037 0.7224095 2
4440  1.291803 -0.6485037 0.7224095 1
4441  1.291803 -0.6485037 0.7224095 1
4442  1.291803 -0.6485037 0.7224095 2
4443  1.291803 -0.6485037 0.7224095 1
4444  1.291803 -0.6485037 0.7224095 1
4445  1.291803 -0.6485037 0.7224095 1
4446  1.291803 -0.6485037 0.7224095 2
4447  1.291803 -0.6485037 0.7224095 1
4448  1.291803 -0.6485037 0.7224095 2
4449  1.291803 -0.6485037 0.7224095 1
4450  1.291803 -0.6485037 0.7224095 2
4451  1.291803 -0.6485037 0.7224095 2
4452  1.291803 -0.6485037 0.7224095 3
4453  1.291803 -0.6485037 0.7224095 1
4454  1.291803 -0.6485037 0.7224095 3
4455  1.291803 -0.6485037 0.7224095 3
4456  1.291803 -0.6485037 0.7224095 2
4457  1.291803 -0.6485037 0.7224095 2
4458  1.291803 -0.6485037 0.7224095 3
4459  1.291803 -0.6485037 0.7224095 3
4460  1.291803 -0.6485037 0.7224095 2
4461  1.291803 -0.6485037 0.7224095 2
4462  1.291803 -0.6485037 0.7224095 1
4463  1.291803 -0.6485037 0.7224095 3
4464  1.291803 -0.6485037 0.7224095 3
4465  1.291803 -0.6485037 0.7224095 3
4466  1.291803 -0.6485037 0.7224095 1
4467  1.291803 -0.6485037 0.7224095 2
4468  1.291803 -0.6485037 0.7224095 3
4469  1.291803 -0.6485037 0.7224095 3
4470  1.291803 -0.6485037 0.7224095 3
4471  1.291803 -0.6485037 0.7224095 2
4472  1.291803 -0.6485037 0.7224095 3
4473  1.291803 -0.6485037 0.7224095 2
4474  1.291803 -0.6485037 0.7224095 3
4475  1.291803 -0.6485037 0.7224095 1
4476  1.291803 -0.6485037 0.7224095 1
4477  1.291803 -0.6485037 0.7224095 3
4478  1.291803 -0.6485037 0.7224095 3
4479  1.291803 -0.6485037 0.7224095 2
4480  1.291803 -0.6485037 0.7224095 3
4481  1.291803 -0.6485037 0.7224095 2
4482  1.291803 -0.6485037 0.7224095 2
4483  1.291803 -0.6485037 0.7224095 2
4484  1.291803 -0.6485037 0.7224095 2
4485  1.291803 -0.6485037 0.7224095 3
4486  1.291803 -0.6485037 0.7224095 1
4487  1.291803 -0.6485037 0.7224095 2
4488  1.291803 -0.6485037 0.7224095 3
4489  1.291803 -0.6485037 0.7224095 2
4490  1.291803 -0.6485037 0.7224095 3
4491  1.291803 -0.6485037 0.7224095 1
4492  1.291803 -0.6485037 0.7224095 2
4493  1.291803 -0.6485037 0.7224095 2
4494  1.291803 -0.6485037 0.7224095 3
4495  1.291803 -0.6485037 0.7224095 3
4496  1.291803 -0.6485037 0.7224095 1
4497  1.291803 -0.6485037 0.7224095 2
4498  1.291803 -0.6485037 0.7224095 1
4499  1.291803 -0.6485037 0.7224095 2
4500  1.291803 -0.6485037 0.7224095 1
4501  1.291803 -0.6485037 0.7224095 2
4502  1.291803 -0.6485037 0.7224095 1
4503  1.291803 -0.6485037 0.7224095 2
4504  1.291803 -0.6485037 0.7224095 3
4505  1.291803 -0.6485037 0.7224095 1
4506  1.291803 -0.6485037 0.7224095 1
4507  1.291803 -0.6485037 0.7224095 1
4508  1.291803 -0.6485037 0.7224095 1
4509  1.291803 -0.6485037 0.7224095 3
4510  1.291803 -0.6485037 0.7224095 1
4511  1.291803 -0.6485037 0.7224095 3
4512  1.291803 -0.6485037 0.7224095 3
4513  1.291803 -0.6485037 0.7224095 1
4514  1.291803 -0.6485037 0.7224095 1
4515  1.291803 -0.6485037 0.7224095 1
4516  1.291803 -0.6485037 0.7224095 1
4517  1.291803 -0.6485037 0.7224095 2
4518  1.291803 -0.6485037 0.7224095 3
4519  1.291803 -0.6485037 0.7224095 1
4520  1.291803 -0.6485037 0.7224095 2
4521  1.291803 -0.6485037 0.7224095 2
4522  1.291803 -0.6485037 0.7224095 2
4523  1.291803 -0.6485037 0.7224095 3
4524  1.291803 -0.6485037 0.7224095 2
4525  1.291803 -0.6485037 0.7224095 2
4526  1.291803 -0.6485037 0.7224095 1
4527  1.291803 -0.6485037 0.7224095 1
4528  1.291803 -0.6485037 0.7224095 3
4529  1.291803 -0.6485037 0.7224095 1
4530  1.291803 -0.6485037 0.7224095 1
4531  1.291803 -0.6485037 0.7224095 1
4532  1.291803 -0.6485037 0.7224095 2
4533  1.291803 -0.6485037 0.7224095 3
4534  1.291803 -0.6485037 0.7224095 1
4535  1.291803 -0.6485037 0.7224095 1
4536  1.291803 -0.6485037 0.7224095 1
4537  1.291803 -0.6485037 0.7224095 3
4538  1.291803 -0.6485037 0.7224095 2
4539  1.291803 -0.6485037 0.7224095 3
4540  1.291803 -0.6485037 0.7224095 2
4541  1.291803 -0.6485037 0.7224095 2
4542  1.291803 -0.6485037 0.7224095 1
4543  1.291803 -0.6485037 0.7224095 2
4544  1.291803 -0.6485037 0.7224095 2
4545  1.291803 -0.6485037 0.7224095 2
4546  1.291803 -0.6485037 0.7224095 3
4547  1.291803 -0.6485037 0.7224095 1
4548  1.291803 -0.6485037 0.7224095 2
4549  1.291803 -0.6485037 0.7224095 1
4550  1.291803 -0.6485037 0.7224095 3
4551  1.291803 -0.6485037 0.7224095 2
4552  1.291803 -0.6485037 0.7224095 2
4553  1.291803 -0.6485037 0.7224095 3
4554  1.291803 -0.6485037 0.7224095 1
4555  1.291803 -0.6485037 0.7224095 1
4556  1.291803 -0.6485037 0.7224095 3
4557  1.291803 -0.6485037 0.7224095 1
4558  1.291803 -0.6485037 0.7224095 1
4559  1.291803 -0.6485037 0.7224095 2
4560  1.291803 -0.6485037 0.7224095 2
4561  1.291803 -0.6485037 0.7224095 3
4562  1.291803 -0.6485037 0.7224095 1
4563  1.291803 -0.6485037 0.7224095 1
4564  1.291803 -0.6485037 0.7224095 3
4565  1.291803 -0.6485037 0.7224095 2
4566  1.291803 -0.6485037 0.7224095 1
4567  1.291803 -0.6485037 0.7224095 3
4568  1.291803 -0.6485037 0.7224095 2
4569  1.291803 -0.6485037 0.7224095 1
4570  1.291803 -0.6485037 0.7224095 2
4571  1.291803 -0.6485037 0.7224095 2
4572  1.291803 -0.6485037 0.7224095 1
4573  1.291803 -0.6485037 0.7224095 1
4574  1.291803 -0.6485037 0.7224095 1
4575  1.291803 -0.6485037 0.7224095 2
4576  1.291803 -0.6485037 0.7224095 1
4577  1.291803 -0.6485037 0.7224095 3
4578  1.291803 -0.6485037 0.7224095 3
4579  1.291803 -0.6485037 0.7224095 3
4580  1.291803 -0.6485037 0.7224095 2
4581  1.291803 -0.6485037 0.7224095 2
4582  1.291803 -0.6485037 0.7224095 3
4583  1.291803 -0.6485037 0.7224095 3
4584  1.291803 -0.6485037 0.7224095 1
4585  1.291803 -0.6485037 0.7224095 2
4586  1.291803 -0.6485037 0.7224095 1
4587  1.291803 -0.6485037 0.7224095 1
4588  1.291803 -0.6485037 0.7224095 1
4589  1.291803 -0.6485037 0.7224095 3
4590  1.291803 -0.6485037 0.7224095 1
4591  1.291803 -0.6485037 0.7224095 2
4592  1.291803 -0.6485037 0.7224095 2
4593  1.291803 -0.6485037 0.7224095 3
4594  1.291803 -0.6485037 0.7224095 2
4595  1.291803 -0.6485037 0.7224095 3
4596  1.293375 -0.6591422 0.7209080 1
4597  1.293375 -0.6591422 0.7209080 2
4598  1.293375 -0.6591422 0.7209080 2
4599  1.293375 -0.6591422 0.7209080 2
4600  1.293375 -0.6591422 0.7209080 1
4601  1.293375 -0.6591422 0.7209080 3
4602  1.293375 -0.6591422 0.7209080 3
4603  1.293375 -0.6591422 0.7209080 2
4604  1.293375 -0.6591422 0.7209080 2
4605  1.293375 -0.6591422 0.7209080 2
4606  1.293375 -0.6591422 0.7209080 1
4607  1.293375 -0.6591422 0.7209080 3
4608  1.293375 -0.6591422 0.7209080 2
4609  1.293375 -0.6591422 0.7209080 1
4610  1.293375 -0.6591422 0.7209080 2
4611  1.293375 -0.6591422 0.7209080 3
4612  1.293375 -0.6591422 0.7209080 3
4613  1.293375 -0.6591422 0.7209080 1
4614  1.293375 -0.6591422 0.7209080 2
4615  1.293375 -0.6591422 0.7209080 2
4616  1.293375 -0.6591422 0.7209080 1
4617  1.293375 -0.6591422 0.7209080 3
4618  1.293375 -0.6591422 0.7209080 1
4619  1.293375 -0.6591422 0.7209080 1
4620  1.293375 -0.6591422 0.7209080 3
4621  1.293375 -0.6591422 0.7209080 2
4622  1.293375 -0.6591422 0.7209080 3
4623  1.293375 -0.6591422 0.7209080 1
4624  1.293375 -0.6591422 0.7209080 3
4625  1.293375 -0.6591422 0.7209080 2
4626  1.293375 -0.6591422 0.7209080 3
4627  1.293375 -0.6591422 0.7209080 3
4628  1.293375 -0.6591422 0.7209080 3
4629  1.293375 -0.6591422 0.7209080 1
4630  1.293375 -0.6591422 0.7209080 1
4631  1.293375 -0.6591422 0.7209080 2
4632  1.293375 -0.6591422 0.7209080 2
4633  1.293375 -0.6591422 0.7209080 3
4634  1.293375 -0.6591422 0.7209080 2
4635  1.293375 -0.6591422 0.7209080 1
4636  1.293375 -0.6591422 0.7209080 2
4637  1.293375 -0.6591422 0.7209080 2
4638  1.293375 -0.6591422 0.7209080 2
4639  1.293375 -0.6591422 0.7209080 2
4640  1.293375 -0.6591422 0.7209080 1
4641  1.293375 -0.6591422 0.7209080 2
4642  1.293375 -0.6591422 0.7209080 3
4643  1.293375 -0.6591422 0.7209080 3
4644  1.293375 -0.6591422 0.7209080 1
4645  1.293375 -0.6591422 0.7209080 3
4646  1.293375 -0.6591422 0.7209080 2
4647  1.293375 -0.6591422 0.7209080 1
4648  1.293375 -0.6591422 0.7209080 1
4649  1.293375 -0.6591422 0.7209080 3
4650  1.293375 -0.6591422 0.7209080 3
4651  1.293375 -0.6591422 0.7209080 1
4652  1.293375 -0.6591422 0.7209080 3
4653  1.293375 -0.6591422 0.7209080 2
4654  1.293375 -0.6591422 0.7209080 1
4655  1.293375 -0.6591422 0.7209080 1
4656  1.293375 -0.6591422 0.7209080 2
4657  1.293375 -0.6591422 0.7209080 3
4658  1.293375 -0.6591422 0.7209080 1
4659  1.293375 -0.6591422 0.7209080 1
4660  1.293375 -0.6591422 0.7209080 2
4661  1.293375 -0.6591422 0.7209080 1
4662  1.293375 -0.6591422 0.7209080 2
4663  1.293375 -0.6591422 0.7209080 2
4664  1.293375 -0.6591422 0.7209080 1
4665  1.293375 -0.6591422 0.7209080 2
4666  1.293375 -0.6591422 0.7209080 1
4667  1.293375 -0.6591422 0.7209080 1
4668  1.293375 -0.6591422 0.7209080 3
4669  1.293375 -0.6591422 0.7209080 2
4670  1.293375 -0.6591422 0.7209080 3
4671  1.293375 -0.6591422 0.7209080 3
4672  1.293375 -0.6591422 0.7209080 2
4673  1.293375 -0.6591422 0.7209080 3
4674  1.293375 -0.6591422 0.7209080 1
4675  1.293375 -0.6591422 0.7209080 1
4676  1.293375 -0.6591422 0.7209080 2
4677  1.293375 -0.6591422 0.7209080 3
4678  1.293375 -0.6591422 0.7209080 2
4679  1.293375 -0.6591422 0.7209080 3
4680  1.293375 -0.6591422 0.7209080 3
4681  1.293375 -0.6591422 0.7209080 3
4682  1.293375 -0.6591422 0.7209080 3
4683  1.293375 -0.6591422 0.7209080 3
4684  1.293375 -0.6591422 0.7209080 2
4685  1.293375 -0.6591422 0.7209080 1
4686  1.293375 -0.6591422 0.7209080 2
4687  1.293375 -0.6591422 0.7209080 3
4688  1.293375 -0.6591422 0.7209080 2
4689  1.293375 -0.6591422 0.7209080 3
4690  1.293375 -0.6591422 0.7209080 3
4691  1.293375 -0.6591422 0.7209080 2
4692  1.293375 -0.6591422 0.7209080 1
4693  1.293375 -0.6591422 0.7209080 2
4694  1.293375 -0.6591422 0.7209080 1
4695  1.293375 -0.6591422 0.7209080 1
4696  1.293375 -0.6591422 0.7209080 1
4697  1.293375 -0.6591422 0.7209080 2
4698  1.293375 -0.6591422 0.7209080 3
4699  1.293375 -0.6591422 0.7209080 2
4700  1.293375 -0.6591422 0.7209080 1
4701  1.293375 -0.6591422 0.7209080 2
4702  1.293375 -0.6591422 0.7209080 1
4703  1.293375 -0.6591422 0.7209080 2
4704  1.293375 -0.6591422 0.7209080 2
4705  1.293375 -0.6591422 0.7209080 1
4706  1.293375 -0.6591422 0.7209080 3
4707  1.293375 -0.6591422 0.7209080 2
4708  1.293375 -0.6591422 0.7209080 3
4709  1.293375 -0.6591422 0.7209080 2
4710  1.293375 -0.6591422 0.7209080 2
4711  1.293375 -0.6591422 0.7209080 2
4712  1.293375 -0.6591422 0.7209080 2
4713  1.293375 -0.6591422 0.7209080 2
4714  1.293375 -0.6591422 0.7209080 1
4715  1.293375 -0.6591422 0.7209080 1
4716  1.293375 -0.6591422 0.7209080 2
4717  1.293375 -0.6591422 0.7209080 3
4718  1.293375 -0.6591422 0.7209080 2
4719  1.293375 -0.6591422 0.7209080 1
4720  1.293375 -0.6591422 0.7209080 1
4721  1.293375 -0.6591422 0.7209080 2
4722  1.293375 -0.6591422 0.7209080 3
4723  1.293375 -0.6591422 0.7209080 2
4724  1.293375 -0.6591422 0.7209080 1
4725  1.293375 -0.6591422 0.7209080 1
4726  1.293375 -0.6591422 0.7209080 3
4727  1.293375 -0.6591422 0.7209080 1
4728  1.293375 -0.6591422 0.7209080 1
4729  1.293375 -0.6591422 0.7209080 1
4730  1.293375 -0.6591422 0.7209080 2
4731  1.293375 -0.6591422 0.7209080 3
4732  1.293375 -0.6591422 0.7209080 1
4733  1.293375 -0.6591422 0.7209080 2
4734  1.293375 -0.6591422 0.7209080 2
4735  1.293375 -0.6591422 0.7209080 1
4736  1.293375 -0.6591422 0.7209080 1
4737  1.293375 -0.6591422 0.7209080 1
4738  1.293375 -0.6591422 0.7209080 2
4739  1.293375 -0.6591422 0.7209080 2
4740  1.293375 -0.6591422 0.7209080 1
4741  1.293375 -0.6591422 0.7209080 1
4742  1.293375 -0.6591422 0.7209080 3
4743  1.293375 -0.6591422 0.7209080 3
4744  1.293375 -0.6591422 0.7209080 1
4745  1.293375 -0.6591422 0.7209080 2
4746  1.293375 -0.6591422 0.7209080 1
4747  1.293375 -0.6591422 0.7209080 2
4748  1.293375 -0.6591422 0.7209080 1
4749  1.293375 -0.6591422 0.7209080 2
4750  1.293375 -0.6591422 0.7209080 1
4751  1.293375 -0.6591422 0.7209080 2
4752  1.293375 -0.6591422 0.7209080 2
4753  1.293375 -0.6591422 0.7209080 2
4754  1.293375 -0.6591422 0.7209080 1
4755  1.293375 -0.6591422 0.7209080 3
4756  1.293375 -0.6591422 0.7209080 1
4757  1.293375 -0.6591422 0.7209080 2
4758  1.293375 -0.6591422 0.7209080 3
4759  1.293375 -0.6591422 0.7209080 1
4760  1.293375 -0.6591422 0.7209080 3
4761  1.293375 -0.6591422 0.7209080 3
4762  1.293375 -0.6591422 0.7209080 2
4763  1.293375 -0.6591422 0.7209080 3
4764  1.293375 -0.6591422 0.7209080 3
4765  1.293375 -0.6591422 0.7209080 1
4766  1.293375 -0.6591422 0.7209080 3
4767  1.293375 -0.6591422 0.7209080 1
4768  1.293375 -0.6591422 0.7209080 3
4769  1.293375 -0.6591422 0.7209080 2
4770  1.293375 -0.6591422 0.7209080 1
4771  1.293375 -0.6591422 0.7209080 1
4772  1.293375 -0.6591422 0.7209080 3
4773  1.293375 -0.6591422 0.7209080 1
4774  1.293375 -0.6591422 0.7209080 2
4775  1.293375 -0.6591422 0.7209080 2
4776  1.293375 -0.6591422 0.7209080 1
4777  1.293375 -0.6591422 0.7209080 2
4778  1.293375 -0.6591422 0.7209080 3
4779  1.293375 -0.6591422 0.7209080 1
4780  1.293375 -0.6591422 0.7209080 3
4781  1.293375 -0.6591422 0.7209080 1
4782  1.293375 -0.6591422 0.7209080 1
4783  1.293375 -0.6591422 0.7209080 1
4784  1.293375 -0.6591422 0.7209080 2
4785  1.293375 -0.6591422 0.7209080 2
4786  1.293375 -0.6591422 0.7209080 3
4787  1.293375 -0.6591422 0.7209080 1
4788  1.293375 -0.6591422 0.7209080 1
4789  1.293375 -0.6591422 0.7209080 3
4790  1.293375 -0.6591422 0.7209080 2
4791  1.293375 -0.6591422 0.7209080 3
4792  1.293375 -0.6591422 0.7209080 3
4793  1.293375 -0.6591422 0.7209080 2
4794  1.293375 -0.6591422 0.7209080 3
4795  1.293375 -0.6591422 0.7209080 2
4796  1.293375 -0.6591422 0.7209080 3
4797  1.293375 -0.6591422 0.7209080 3
4798  1.293375 -0.6591422 0.7209080 2
4799  1.293375 -0.6591422 0.7209080 3
4800  1.293375 -0.6591422 0.7209080 2
4801  1.293375 -0.6591422 0.7209080 3
4802  1.293375 -0.6591422 0.7209080 2
4803  1.293375 -0.6591422 0.7209080 1
4804  1.293375 -0.6591422 0.7209080 2
4805  1.293375 -0.6591422 0.7209080 1
4806  1.293375 -0.6591422 0.7209080 2
4807  1.293375 -0.6591422 0.7209080 3
4808  1.293375 -0.6591422 0.7209080 3
4809  1.293375 -0.6591422 0.7209080 3
4810  1.293375 -0.6591422 0.7209080 3
4811  1.293375 -0.6591422 0.7209080 1
4812  1.293375 -0.6591422 0.7209080 3
4813  1.293375 -0.6591422 0.7209080 2
4814  1.293375 -0.6591422 0.7209080 3
4815  1.293375 -0.6591422 0.7209080 3
4816  1.293375 -0.6591422 0.7209080 2
4817  1.293375 -0.6591422 0.7209080 1
4818  1.293375 -0.6591422 0.7209080 2
4819  1.293375 -0.6591422 0.7209080 3
4820  1.293375 -0.6591422 0.7209080 3
4821  1.293375 -0.6591422 0.7209080 3
4822  1.293375 -0.6591422 0.7209080 1
4823  1.293375 -0.6591422 0.7209080 3
4824  1.293375 -0.6591422 0.7209080 2
4825  1.293375 -0.6591422 0.7209080 3
4826  1.293375 -0.6591422 0.7209080 1
4827  1.293375 -0.6591422 0.7209080 3
4828  1.293375 -0.6591422 0.7209080 3
4829  1.293375 -0.6591422 0.7209080 3
4830  1.293375 -0.6591422 0.7209080 1
4831  1.293375 -0.6591422 0.7209080 2
4832  1.293375 -0.6591422 0.7209080 1
4833  1.293375 -0.6591422 0.7209080 2
4834  1.293375 -0.6591422 0.7209080 3
4835  1.293375 -0.6591422 0.7209080 2
4836  1.293375 -0.6591422 0.7209080 1
4837  1.293375 -0.6591422 0.7209080 1
4838  1.293375 -0.6591422 0.7209080 1
4839  1.293375 -0.6591422 0.7209080 2
4840  1.293375 -0.6591422 0.7209080 1
4841  1.293375 -0.6591422 0.7209080 2
4842  1.293375 -0.6591422 0.7209080 3
4843  1.293375 -0.6591422 0.7209080 1
4844  1.293375 -0.6591422 0.7209080 3
4845  1.293375 -0.6591422 0.7209080 3
4846  1.293375 -0.6591422 0.7209080 3
4847  1.293375 -0.6591422 0.7209080 2
4848  1.293375 -0.6591422 0.7209080 3
4849  1.293375 -0.6591422 0.7209080 3
4850  1.293375 -0.6591422 0.7209080 3
4851  1.293375 -0.6591422 0.7209080 3
4852  1.293375 -0.6591422 0.7209080 3
4853  1.293375 -0.6591422 0.7209080 3
4854  1.293375 -0.6591422 0.7209080 3
4855  1.293375 -0.6591422 0.7209080 2
4856  1.293375 -0.6591422 0.7209080 3
4857  1.293375 -0.6591422 0.7209080 1
4858  1.293375 -0.6591422 0.7209080 1
4859  1.293375 -0.6591422 0.7209080 2
4860  1.293375 -0.6591422 0.7209080 2
4861  1.293375 -0.6591422 0.7209080 3
4862  1.293375 -0.6591422 0.7209080 2
4863  1.293375 -0.6591422 0.7209080 3
4864  1.293375 -0.6591422 0.7209080 2
4865  1.293375 -0.6591422 0.7209080 1
4866  1.293375 -0.6591422 0.7209080 1
4867  1.293375 -0.6591422 0.7209080 3
4868  1.293375 -0.6591422 0.7209080 2
4869  1.293375 -0.6591422 0.7209080 2
4870  1.293375 -0.6591422 0.7209080 3
4871  1.293375 -0.6591422 0.7209080 2
4872  1.293375 -0.6591422 0.7209080 3
4873  1.293375 -0.6591422 0.7209080 1
4874  1.293375 -0.6591422 0.7209080 1
4875  1.293375 -0.6591422 0.7209080 3
4876  1.293375 -0.6591422 0.7209080 2
4877  1.293375 -0.6591422 0.7209080 2
4878  1.293375 -0.6591422 0.7209080 1
4879  1.293375 -0.6591422 0.7209080 3
4880  1.293375 -0.6591422 0.7209080 2
4881  1.293375 -0.6591422 0.7209080 3
4882  1.293375 -0.6591422 0.7209080 3
4883  1.293375 -0.6591422 0.7209080 3
4884  1.293375 -0.6591422 0.7209080 2
4885  1.293375 -0.6591422 0.7209080 2
4886  1.293375 -0.6591422 0.7209080 3
4887  1.293375 -0.6591422 0.7209080 1
4888  1.293375 -0.6591422 0.7209080 2
4889  1.293375 -0.6591422 0.7209080 2
4890  1.293375 -0.6591422 0.7209080 3
4891  1.293375 -0.6591422 0.7209080 1
4892  1.293375 -0.6591422 0.7209080 3
4893  1.293375 -0.6591422 0.7209080 2
4894  1.293375 -0.6591422 0.7209080 1
4895  1.293375 -0.6591422 0.7209080 2
4896  1.293375 -0.6591422 0.7209080 2
4897  1.293375 -0.6591422 0.7209080 3
4898  1.293375 -0.6591422 0.7209080 1
4899  1.293375 -0.6591422 0.7209080 3
4900  1.293375 -0.6591422 0.7209080 1
4901  1.293375 -0.6591422 0.7209080 2
4902  1.293375 -0.6591422 0.7209080 2
4903  1.293375 -0.6591422 0.7209080 1
4904  1.293375 -0.6591422 0.7209080 1
4905  1.293375 -0.6591422 0.7209080 1
4906  1.293375 -0.6591422 0.7209080 2
4907  1.293375 -0.6591422 0.7209080 3
4908  1.293375 -0.6591422 0.7209080 3
4909  1.293375 -0.6591422 0.7209080 2
4910  1.293375 -0.6591422 0.7209080 2
4911  1.293375 -0.6591422 0.7209080 1
4912  1.293375 -0.6591422 0.7209080 1
4913  1.293375 -0.6591422 0.7209080 1
4914  1.293375 -0.6591422 0.7209080 3
4915  1.293375 -0.6591422 0.7209080 1
4916  1.293375 -0.6591422 0.7209080 3
4917  1.293375 -0.6591422 0.7209080 3
4918  1.293375 -0.6591422 0.7209080 2
4919  1.293375 -0.6591422 0.7209080 3
4920  1.293375 -0.6591422 0.7209080 1
4921  1.293375 -0.6591422 0.7209080 1
4922  1.293375 -0.6591422 0.7209080 3
4923  1.293375 -0.6591422 0.7209080 2
4924  1.293375 -0.6591422 0.7209080 3
4925  1.293375 -0.6591422 0.7209080 1
4926  1.293375 -0.6591422 0.7209080 3
4927  1.293375 -0.6591422 0.7209080 3
4928  1.293375 -0.6591422 0.7209080 2
4929  1.293375 -0.6591422 0.7209080 3
4930  1.293375 -0.6591422 0.7209080 2
4931  1.293375 -0.6591422 0.7209080 1
4932  1.293375 -0.6591422 0.7209080 2
4933  1.293375 -0.6591422 0.7209080 3
4934  1.293375 -0.6591422 0.7209080 1
4935  1.293375 -0.6591422 0.7209080 1
4936  1.293375 -0.6591422 0.7209080 2
4937  1.293375 -0.6591422 0.7209080 1
4938  1.293375 -0.6591422 0.7209080 1
4939  1.293375 -0.6591422 0.7209080 2
4940  1.293375 -0.6591422 0.7209080 1
4941  1.293375 -0.6591422 0.7209080 1
4942  1.293375 -0.6591422 0.7209080 3
4943  1.293375 -0.6591422 0.7209080 3
4944  1.293375 -0.6591422 0.7209080 1
4945  1.293375 -0.6591422 0.7209080 1
4946  1.293375 -0.6591422 0.7209080 2
4947  1.293375 -0.6591422 0.7209080 3
4948  1.293375 -0.6591422 0.7209080 2
4949  1.293375 -0.6591422 0.7209080 3
4950  1.293375 -0.6591422 0.7209080 2
4951  1.293375 -0.6591422 0.7209080 1
4952  1.293375 -0.6591422 0.7209080 2
4953  1.293375 -0.6591422 0.7209080 1
4954  1.293375 -0.6591422 0.7209080 2
4955  1.293375 -0.6591422 0.7209080 3
4956  1.293375 -0.6591422 0.7209080 1
4957  1.293375 -0.6591422 0.7209080 3
4958  1.293375 -0.6591422 0.7209080 3
4959  1.293375 -0.6591422 0.7209080 1
4960  1.293375 -0.6591422 0.7209080 2
4961  1.293375 -0.6591422 0.7209080 1
4962  1.293375 -0.6591422 0.7209080 2
4963  1.293375 -0.6591422 0.7209080 3
4964  1.293375 -0.6591422 0.7209080 2
4965  1.293375 -0.6591422 0.7209080 3
4966  1.293375 -0.6591422 0.7209080 3
4967  1.293375 -0.6591422 0.7209080 3
4968  1.293375 -0.6591422 0.7209080 3
4969  1.293375 -0.6591422 0.7209080 1
4970  1.293375 -0.6591422 0.7209080 3
4971  1.293375 -0.6591422 0.7209080 3
4972  1.293375 -0.6591422 0.7209080 2
4973  1.293375 -0.6591422 0.7209080 2
4974  1.293375 -0.6591422 0.7209080 3
4975  1.293375 -0.6591422 0.7209080 2
4976  1.293375 -0.6591422 0.7209080 3
4977  1.293375 -0.6591422 0.7209080 2
4978  1.293375 -0.6591422 0.7209080 1
4979  1.293375 -0.6591422 0.7209080 2
4980  1.293375 -0.6591422 0.7209080 3
4981  1.293375 -0.6591422 0.7209080 3
4982  1.293375 -0.6591422 0.7209080 3
4983  1.293375 -0.6591422 0.7209080 3
4984  1.293375 -0.6591422 0.7209080 1
4985  1.293375 -0.6591422 0.7209080 3
4986  1.293375 -0.6591422 0.7209080 3
4987  1.293375 -0.6591422 0.7209080 1
4988  1.293375 -0.6591422 0.7209080 1
4989  1.293375 -0.6591422 0.7209080 1
4990  1.293375 -0.6591422 0.7209080 2
4991  1.293375 -0.6591422 0.7209080 2
4992  1.293375 -0.6591422 0.7209080 3
4993  1.293375 -0.6591422 0.7209080 2
4994  1.293375 -0.6591422 0.7209080 3
4995  1.293375 -0.6591422 0.7209080 1
4996  1.293375 -0.6591422 0.7209080 2
4997  1.293375 -0.6591422 0.7209080 3
4998  1.293375 -0.6591422 0.7209080 1
4999  1.293375 -0.6591422 0.7209080 3
5000  1.293375 -0.6591422 0.7209080 1
5001  1.293375 -0.6591422 0.7209080 3
5002  1.293375 -0.6591422 0.7209080 3
5003  1.293375 -0.6591422 0.7209080 3
5004  1.293375 -0.6591422 0.7209080 2
5005  1.293375 -0.6591422 0.7209080 3
5006  1.293375 -0.6591422 0.7209080 1
5007  1.293375 -0.6591422 0.7209080 3
5008  1.293375 -0.6591422 0.7209080 1
5009  1.293375 -0.6591422 0.7209080 2
5010  1.293375 -0.6591422 0.7209080 3
5011  1.293375 -0.6591422 0.7209080 3
5012  1.293375 -0.6591422 0.7209080 1
5013  1.293375 -0.6591422 0.7209080 3
5014  1.293375 -0.6591422 0.7209080 1
5015  1.293375 -0.6591422 0.7209080 2
5016  1.293375 -0.6591422 0.7209080 3
5017  1.293375 -0.6591422 0.7209080 1
5018  1.293375 -0.6591422 0.7209080 2
5019  1.293375 -0.6591422 0.7209080 2
5020  1.293375 -0.6591422 0.7209080 2
5021  1.293375 -0.6591422 0.7209080 2
5022  1.293375 -0.6591422 0.7209080 1
5023  1.293375 -0.6591422 0.7209080 1
5024  1.293375 -0.6591422 0.7209080 3
5025  1.293375 -0.6591422 0.7209080 3
5026  1.293375 -0.6591422 0.7209080 3
5027  1.293375 -0.6591422 0.7209080 2
5028  1.293375 -0.6591422 0.7209080 2
5029  1.293375 -0.6591422 0.7209080 2
5030  1.293375 -0.6591422 0.7209080 2
5031  1.293375 -0.6591422 0.7209080 3
5032  1.293375 -0.6591422 0.7209080 1
5033  1.293375 -0.6591422 0.7209080 1
5034  1.293375 -0.6591422 0.7209080 3
5035  1.293375 -0.6591422 0.7209080 3
5036  1.293375 -0.6591422 0.7209080 3
5037  1.293375 -0.6591422 0.7209080 1
5038  1.293375 -0.6591422 0.7209080 3
5039  1.293375 -0.6591422 0.7209080 2
5040  1.293375 -0.6591422 0.7209080 3
5041  1.293375 -0.6591422 0.7209080 2
5042  1.293375 -0.6591422 0.7209080 2
5043  1.293375 -0.6591422 0.7209080 2
5044  1.293375 -0.6591422 0.7209080 1
5045  1.293375 -0.6591422 0.7209080 1
5046  1.293375 -0.6591422 0.7209080 1
5047  1.293375 -0.6591422 0.7209080 3
5048  1.293375 -0.6591422 0.7209080 2
5049  1.293375 -0.6591422 0.7209080 3
5050  1.293375 -0.6591422 0.7209080 1
5051  1.293375 -0.6591422 0.7209080 1
5052  1.293375 -0.6591422 0.7209080 1
5053  1.293375 -0.6591422 0.7209080 3
5054  1.293375 -0.6591422 0.7209080 1
5055  1.293375 -0.6591422 0.7209080 1
5056  1.293375 -0.6591422 0.7209080 1
5057  1.293375 -0.6591422 0.7209080 3
5058  1.293375 -0.6591422 0.7209080 3
5059  1.293375 -0.6591422 0.7209080 2
5060  1.293375 -0.6591422 0.7209080 1
5061  1.293375 -0.6591422 0.7209080 1
5062  1.293375 -0.6591422 0.7209080 1
5063  1.293375 -0.6591422 0.7209080 1
5064  1.293375 -0.6591422 0.7209080 3
5065  1.293375 -0.6591422 0.7209080 1
5066  1.293375 -0.6591422 0.7209080 3
5067  1.293375 -0.6591422 0.7209080 2
5068  1.293375 -0.6591422 0.7209080 3
5069  1.293375 -0.6591422 0.7209080 2
5070  1.293375 -0.6591422 0.7209080 2
5071  1.293375 -0.6591422 0.7209080 2
5072  1.293375 -0.6591422 0.7209080 3
5073  1.293375 -0.6591422 0.7209080 2
5074  1.293375 -0.6591422 0.7209080 2
5075  1.293375 -0.6591422 0.7209080 1
5076  1.293375 -0.6591422 0.7209080 2
5077  1.293375 -0.6591422 0.7209080 1
5078  1.293375 -0.6591422 0.7209080 3
5079  1.293375 -0.6591422 0.7209080 1
5080  1.293375 -0.6591422 0.7209080 3
5081  1.293375 -0.6591422 0.7209080 3
5082  1.293375 -0.6591422 0.7209080 2
5083  1.293375 -0.6591422 0.7209080 1
5084  1.293375 -0.6591422 0.7209080 2
5085  1.293375 -0.6591422 0.7209080 1
5086  1.293375 -0.6591422 0.7209080 1
5087  1.293375 -0.6591422 0.7209080 1
5088  1.293375 -0.6591422 0.7209080 3
5089  1.293375 -0.6591422 0.7209080 1
5090  1.293375 -0.6591422 0.7209080 1
5091  1.293375 -0.6591422 0.7209080 2
5092  1.293375 -0.6591422 0.7209080 3
5093  1.293375 -0.6591422 0.7209080 2
5094  1.293375 -0.6591422 0.7209080 2
5095  1.293375 -0.6591422 0.7209080 3
5096  1.293375 -0.6591422 0.7209080 1
5097  1.293375 -0.6591422 0.7209080 2
5098  1.293375 -0.6591422 0.7209080 2
5099  1.293375 -0.6591422 0.7209080 2
5100  1.293375 -0.6591422 0.7209080 3
5101  1.293375 -0.6591422 0.7209080 2
5102  1.293375 -0.6591422 0.7209080 2
5103  1.293375 -0.6591422 0.7209080 1
5104  1.293375 -0.6591422 0.7209080 1
5105  1.293375 -0.6591422 0.7209080 1
5106  1.293375 -0.6591422 0.7209080 1
5107  1.293375 -0.6591422 0.7209080 1
5108  1.293375 -0.6591422 0.7209080 1
5109  1.293375 -0.6591422 0.7209080 3
5110  1.293375 -0.6591422 0.7209080 2
5111  1.293375 -0.6591422 0.7209080 3
5112  1.293375 -0.6591422 0.7209080 2
5113  1.293375 -0.6591422 0.7209080 1
5114  1.293375 -0.6591422 0.7209080 1
5115  1.293375 -0.6591422 0.7209080 2
5116  1.293375 -0.6591422 0.7209080 3
5117  1.293375 -0.6591422 0.7209080 2
5118  1.293375 -0.6591422 0.7209080 3
5119  1.293375 -0.6591422 0.7209080 1
5120  1.293375 -0.6591422 0.7209080 2
5121  1.293375 -0.6591422 0.7209080 2
5122  1.293375 -0.6591422 0.7209080 2
5123  1.293375 -0.6591422 0.7209080 3
5124  1.293375 -0.6591422 0.7209080 3
5125  1.293375 -0.6591422 0.7209080 1
5126  1.293375 -0.6591422 0.7209080 1
5127  1.293375 -0.6591422 0.7209080 3
5128  1.293375 -0.6591422 0.7209080 1
5129  1.293375 -0.6591422 0.7209080 2
5130  1.293375 -0.6591422 0.7209080 3
5131  1.293375 -0.6591422 0.7209080 2
5132  1.293375 -0.6591422 0.7209080 3
5133  1.293375 -0.6591422 0.7209080 3
5134  1.293375 -0.6591422 0.7209080 3
5135  1.293375 -0.6591422 0.7209080 3
5136  1.293375 -0.6591422 0.7209080 1
5137  1.293375 -0.6591422 0.7209080 3
5138  1.293375 -0.6591422 0.7209080 3
5139  1.293375 -0.6591422 0.7209080 1
5140  1.293375 -0.6591422 0.7209080 2
5141  1.293375 -0.6591422 0.7209080 3
5142  1.293375 -0.6591422 0.7209080 2
5143  1.293375 -0.6591422 0.7209080 2
5144  1.293375 -0.6591422 0.7209080 3
5145  1.293375 -0.6591422 0.7209080 1
5146  1.293375 -0.6591422 0.7209080 3
5147  1.293375 -0.6591422 0.7209080 3
5148  1.293375 -0.6591422 0.7209080 1
5149  1.293375 -0.6591422 0.7209080 3
5150  1.293375 -0.6591422 0.7209080 1
5151  1.293375 -0.6591422 0.7209080 2
5152  1.293375 -0.6591422 0.7209080 1
5153  1.293375 -0.6591422 0.7209080 1
5154  1.293375 -0.6591422 0.7209080 2
5155  1.293375 -0.6591422 0.7209080 1
5156  1.293375 -0.6591422 0.7209080 3
5157  1.293375 -0.6591422 0.7209080 3
5158  1.293375 -0.6591422 0.7209080 1
5159  1.293375 -0.6591422 0.7209080 2
5160  1.293375 -0.6591422 0.7209080 3
5161  1.293375 -0.6591422 0.7209080 3
5162  1.293375 -0.6591422 0.7209080 1
5163  1.293375 -0.6591422 0.7209080 1
5164  1.293375 -0.6591422 0.7209080 2
5165  1.293375 -0.6591422 0.7209080 1
5166  1.293375 -0.6591422 0.7209080 1
5167  1.293375 -0.6591422 0.7209080 2
5168  1.293375 -0.6591422 0.7209080 3
5169  1.293375 -0.6591422 0.7209080 1
5170  1.293375 -0.6591422 0.7209080 3
5171  1.293375 -0.6591422 0.7209080 2
5172  1.293375 -0.6591422 0.7209080 2
5173  1.293375 -0.6591422 0.7209080 3
5174  1.293375 -0.6591422 0.7209080 2
5175  1.293375 -0.6591422 0.7209080 3
5176  1.293375 -0.6591422 0.7209080 2
5177  1.293375 -0.6591422 0.7209080 1
5178  1.293375 -0.6591422 0.7209080 1
5179  1.293375 -0.6591422 0.7209080 3
5180  1.293375 -0.6591422 0.7209080 3
5181  1.293375 -0.6591422 0.7209080 2
5182  1.293375 -0.6591422 0.7209080 3
5183  1.293375 -0.6591422 0.7209080 1
5184  1.293375 -0.6591422 0.7209080 2
5185  1.293375 -0.6591422 0.7209080 1
5186  1.293375 -0.6591422 0.7209080 1
5187  1.293375 -0.6591422 0.7209080 3
5188  1.293375 -0.6591422 0.7209080 3
5189  1.293375 -0.6591422 0.7209080 1
5190  1.293375 -0.6591422 0.7209080 3
5191  1.293375 -0.6591422 0.7209080 1
5192  1.293375 -0.6591422 0.7209080 3
5193  1.293375 -0.6591422 0.7209080 3
5194  1.293375 -0.6591422 0.7209080 3
5195  1.293375 -0.6591422 0.7209080 1
5196  1.293375 -0.6591422 0.7209080 2
5197  1.293375 -0.6591422 0.7209080 1
5198  1.293375 -0.6591422 0.7209080 3
5199  1.293375 -0.6591422 0.7209080 3
5200  1.293375 -0.6591422 0.7209080 3
5201  1.293375 -0.6591422 0.7209080 1
5202  1.293375 -0.6591422 0.7209080 2
5203  1.293375 -0.6591422 0.7209080 1
5204  1.293375 -0.6591422 0.7209080 1
5205  1.293375 -0.6591422 0.7209080 1
5206  1.293375 -0.6591422 0.7209080 1
5207  1.293375 -0.6591422 0.7209080 1
5208  1.293375 -0.6591422 0.7209080 1
5209  1.293375 -0.6591422 0.7209080 1
5210  1.293375 -0.6591422 0.7209080 2
5211  1.293375 -0.6591422 0.7209080 1
5212  1.293375 -0.6591422 0.7209080 3
5213  1.293375 -0.6591422 0.7209080 3
5214  1.293375 -0.6591422 0.7209080 1
5215  1.293375 -0.6591422 0.7209080 2
5216  1.293375 -0.6591422 0.7209080 3
5217  1.293375 -0.6591422 0.7209080 2
5218  1.293375 -0.6591422 0.7209080 3
5219  1.293375 -0.6591422 0.7209080 3
5220  1.293375 -0.6591422 0.7209080 3
5221  1.293375 -0.6591422 0.7209080 2
5222  1.293375 -0.6591422 0.7209080 3
5223  1.293375 -0.6591422 0.7209080 2
5224  1.293375 -0.6591422 0.7209080 3
5225  1.293375 -0.6591422 0.7209080 3
5226  1.293375 -0.6591422 0.7209080 1
5227  1.293375 -0.6591422 0.7209080 3
5228  1.293375 -0.6591422 0.7209080 1
5229  1.293375 -0.6591422 0.7209080 2
5230  1.293375 -0.6591422 0.7209080 3
5231  1.293375 -0.6591422 0.7209080 2
5232  1.293375 -0.6591422 0.7209080 1
5233  1.293375 -0.6591422 0.7209080 3
5234  1.293375 -0.6591422 0.7209080 3
5235  1.293375 -0.6591422 0.7209080 1
5236  1.293375 -0.6591422 0.7209080 3
5237  1.293375 -0.6591422 0.7209080 2
5238  1.293375 -0.6591422 0.7209080 1
5239  1.293375 -0.6591422 0.7209080 1
5240  1.293375 -0.6591422 0.7209080 2
5241  1.293375 -0.6591422 0.7209080 3
5242  1.293375 -0.6591422 0.7209080 1
5243  1.293375 -0.6591422 0.7209080 1
5244  1.293375 -0.6591422 0.7209080 1
5245  1.293375 -0.6591422 0.7209080 2
5246  1.293375 -0.6591422 0.7209080 1
5247  1.293375 -0.6591422 0.7209080 1
5248  1.293375 -0.6591422 0.7209080 2
5249  1.293375 -0.6591422 0.7209080 2
5250  1.293375 -0.6591422 0.7209080 1
5251  1.293375 -0.6591422 0.7209080 1
5252  1.293375 -0.6591422 0.7209080 2
5253  1.293375 -0.6591422 0.7209080 2
5254  1.293375 -0.6591422 0.7209080 1
5255  1.293375 -0.6591422 0.7209080 2
5256  1.293375 -0.6591422 0.7209080 2
5257  1.293375 -0.6591422 0.7209080 1
5258  1.293375 -0.6591422 0.7209080 2
5259  1.293375 -0.6591422 0.7209080 3
5260  1.293375 -0.6591422 0.7209080 2
5261  1.293375 -0.6591422 0.7209080 1
5262  1.293375 -0.6591422 0.7209080 2
5263  1.293375 -0.6591422 0.7209080 1
5264  1.293375 -0.6591422 0.7209080 1
5265  1.293375 -0.6591422 0.7209080 3
5266  1.293375 -0.6591422 0.7209080 2
5267  1.293375 -0.6591422 0.7209080 3
5268  1.293375 -0.6591422 0.7209080 1
5269  1.293375 -0.6591422 0.7209080 1
5270  1.293375 -0.6591422 0.7209080 3
5271  1.293375 -0.6591422 0.7209080 2
5272  1.293375 -0.6591422 0.7209080 3
5273  1.293375 -0.6591422 0.7209080 2
5274  1.293375 -0.6591422 0.7209080 1
5275  1.293375 -0.6591422 0.7209080 3
5276  1.293375 -0.6591422 0.7209080 1
5277  1.293375 -0.6591422 0.7209080 1
5278  1.293375 -0.6591422 0.7209080 2
5279  1.293375 -0.6591422 0.7209080 1
5280  1.293375 -0.6591422 0.7209080 3
5281  1.293375 -0.6591422 0.7209080 2
5282  1.293375 -0.6591422 0.7209080 3
5283  1.293375 -0.6591422 0.7209080 1
5284  1.293375 -0.6591422 0.7209080 2
5285  1.293375 -0.6591422 0.7209080 2
5286  1.293375 -0.6591422 0.7209080 1
5287  1.293375 -0.6591422 0.7209080 2
5288  1.293375 -0.6591422 0.7209080 3
5289  1.293375 -0.6591422 0.7209080 3
5290  1.293375 -0.6591422 0.7209080 3
5291  1.293375 -0.6591422 0.7209080 1
5292  1.293375 -0.6591422 0.7209080 3
5293  1.293375 -0.6591422 0.7209080 1
5294  1.293375 -0.6591422 0.7209080 1
5295  1.293375 -0.6591422 0.7209080 1
5296  1.293375 -0.6591422 0.7209080 1
5297  1.293375 -0.6591422 0.7209080 2
5298  1.293375 -0.6591422 0.7209080 1
5299  1.293375 -0.6591422 0.7209080 1
5300  1.293375 -0.6591422 0.7209080 1
5301  1.293375 -0.6591422 0.7209080 3
5302  1.293375 -0.6591422 0.7209080 1
5303  1.293375 -0.6591422 0.7209080 3
5304  1.293375 -0.6591422 0.7209080 1
5305  1.293375 -0.6591422 0.7209080 1
5306  1.293375 -0.6591422 0.7209080 1
5307  1.293375 -0.6591422 0.7209080 3
5308  1.293375 -0.6591422 0.7209080 3
5309  1.293375 -0.6591422 0.7209080 1
5310  1.293375 -0.6591422 0.7209080 1
5311  1.293375 -0.6591422 0.7209080 2
5312  1.293375 -0.6591422 0.7209080 1
5313  1.293375 -0.6591422 0.7209080 1
5314  1.293375 -0.6591422 0.7209080 2
5315  1.293375 -0.6591422 0.7209080 2
5316  1.293375 -0.6591422 0.7209080 2
5317  1.293375 -0.6591422 0.7209080 3
5318  1.293375 -0.6591422 0.7209080 2
5319  1.293375 -0.6591422 0.7209080 2
5320  1.293375 -0.6591422 0.7209080 2
5321  1.293375 -0.6591422 0.7209080 2
5322  1.293375 -0.6591422 0.7209080 3
5323  1.293375 -0.6591422 0.7209080 3
5324  1.293375 -0.6591422 0.7209080 3
5325  1.293375 -0.6591422 0.7209080 1
5326  1.293375 -0.6591422 0.7209080 1
5327  1.293375 -0.6591422 0.7209080 2
5328  1.293375 -0.6591422 0.7209080 1
5329  1.293375 -0.6591422 0.7209080 3
5330  1.293375 -0.6591422 0.7209080 2
5331  1.293375 -0.6591422 0.7209080 2
5332  1.293375 -0.6591422 0.7209080 1
5333  1.293375 -0.6591422 0.7209080 2
5334  1.293375 -0.6591422 0.7209080 2
5335  1.293375 -0.6591422 0.7209080 3
5336  1.293375 -0.6591422 0.7209080 2
5337  1.293375 -0.6591422 0.7209080 2
5338  1.293375 -0.6591422 0.7209080 1
5339  1.293375 -0.6591422 0.7209080 3
5340  1.293375 -0.6591422 0.7209080 1
5341  1.293375 -0.6591422 0.7209080 2
5342  1.293375 -0.6591422 0.7209080 2
5343  1.293375 -0.6591422 0.7209080 2
5344  1.293375 -0.6591422 0.7209080 2
5345  1.293375 -0.6591422 0.7209080 1
5346  1.293375 -0.6591422 0.7209080 1
5347  1.293375 -0.6591422 0.7209080 2
5348  1.293375 -0.6591422 0.7209080 2
5349  1.293375 -0.6591422 0.7209080 3
5350  1.293375 -0.6591422 0.7209080 1
5351  1.293375 -0.6591422 0.7209080 1
5352  1.293375 -0.6591422 0.7209080 3
5353  1.293375 -0.6591422 0.7209080 2
5354  1.293375 -0.6591422 0.7209080 2
5355  1.293375 -0.6591422 0.7209080 3
5356  1.293375 -0.6591422 0.7209080 2
5357  1.293375 -0.6591422 0.7209080 2
5358  1.293375 -0.6591422 0.7209080 3
5359  1.293375 -0.6591422 0.7209080 1
5360  1.293375 -0.6591422 0.7209080 3
5361  1.293375 -0.6591422 0.7209080 3
5362  1.293375 -0.6591422 0.7209080 1
5363  1.293375 -0.6591422 0.7209080 3
5364  1.293375 -0.6591422 0.7209080 3
5365  1.293375 -0.6591422 0.7209080 3
5366  1.293375 -0.6591422 0.7209080 2
5367  1.293375 -0.6591422 0.7209080 2
5368  1.293375 -0.6591422 0.7209080 2
5369  1.293375 -0.6591422 0.7209080 3
5370  1.293375 -0.6591422 0.7209080 3
5371  1.293375 -0.6591422 0.7209080 3
5372  1.293375 -0.6591422 0.7209080 2
5373  1.293375 -0.6591422 0.7209080 3
5374  1.293375 -0.6591422 0.7209080 1
5375  1.293375 -0.6591422 0.7209080 1
5376  1.293375 -0.6591422 0.7209080 3
5377  1.293375 -0.6591422 0.7209080 1
5378  1.293375 -0.6591422 0.7209080 3
5379  1.293375 -0.6591422 0.7209080 1
5380  1.293375 -0.6591422 0.7209080 2
5381  1.293375 -0.6591422 0.7209080 1
5382  1.293375 -0.6591422 0.7209080 3
5383  1.293375 -0.6591422 0.7209080 1
5384  1.293375 -0.6591422 0.7209080 1
5385  1.293375 -0.6591422 0.7209080 2
5386  1.293375 -0.6591422 0.7209080 2
5387  1.293375 -0.6591422 0.7209080 2
5388  1.293375 -0.6591422 0.7209080 3
5389  1.293375 -0.6591422 0.7209080 2
5390  1.293375 -0.6591422 0.7209080 2
5391  1.293375 -0.6591422 0.7209080 1
5392  1.293375 -0.6591422 0.7209080 2
5393  1.293375 -0.6591422 0.7209080 1
5394  1.293375 -0.6591422 0.7209080 2
5395  1.293375 -0.6591422 0.7209080 2
5396  1.293375 -0.6591422 0.7209080 2
5397  1.293375 -0.6591422 0.7209080 3
5398  1.293375 -0.6591422 0.7209080 1
5399  1.293375 -0.6591422 0.7209080 1
5400  1.293375 -0.6591422 0.7209080 2
5401  1.293375 -0.6591422 0.7209080 3
5402  1.293375 -0.6591422 0.7209080 3
5403  1.293375 -0.6591422 0.7209080 3
5404  1.293375 -0.6591422 0.7209080 1
5405  1.293375 -0.6591422 0.7209080 1
5406  1.293375 -0.6591422 0.7209080 1
5407  1.293375 -0.6591422 0.7209080 3
5408  1.293375 -0.6591422 0.7209080 1
5409  1.293375 -0.6591422 0.7209080 3
5410  1.293375 -0.6591422 0.7209080 2
5411  1.293375 -0.6591422 0.7209080 3
5412  1.293375 -0.6591422 0.7209080 1
5413  1.293375 -0.6591422 0.7209080 1
5414  1.293375 -0.6591422 0.7209080 2
5415  1.293375 -0.6591422 0.7209080 1
5416  1.293375 -0.6591422 0.7209080 2
5417  1.293375 -0.6591422 0.7209080 1
5418  1.293375 -0.6591422 0.7209080 3
5419  1.293375 -0.6591422 0.7209080 3
5420  1.293375 -0.6591422 0.7209080 3
5421  1.293375 -0.6591422 0.7209080 1
5422  1.293375 -0.6591422 0.7209080 2
5423  1.293375 -0.6591422 0.7209080 2
5424  1.293375 -0.6591422 0.7209080 1
5425  1.293375 -0.6591422 0.7209080 1
5426  1.293375 -0.6591422 0.7209080 3
5427  1.293375 -0.6591422 0.7209080 1
5428  1.293375 -0.6591422 0.7209080 2
5429  1.293375 -0.6591422 0.7209080 1
5430  1.293375 -0.6591422 0.7209080 3
5431  1.293375 -0.6591422 0.7209080 1
5432  1.293375 -0.6591422 0.7209080 2
5433  1.293375 -0.6591422 0.7209080 1
5434  1.293375 -0.6591422 0.7209080 2
5435  1.293375 -0.6591422 0.7209080 1
5436  1.293375 -0.6591422 0.7209080 3
5437  1.293375 -0.6591422 0.7209080 1
5438  1.293375 -0.6591422 0.7209080 2
5439  1.293375 -0.6591422 0.7209080 3
5440  1.293375 -0.6591422 0.7209080 3
5441  1.293375 -0.6591422 0.7209080 1
5442  1.293375 -0.6591422 0.7209080 3
5443  1.293375 -0.6591422 0.7209080 2
5444  1.293375 -0.6591422 0.7209080 2
5445  1.293375 -0.6591422 0.7209080 2
5446  1.293375 -0.6591422 0.7209080 1
5447  1.293375 -0.6591422 0.7209080 2
5448  1.293375 -0.6591422 0.7209080 1
5449  1.293375 -0.6591422 0.7209080 3
5450  1.293375 -0.6591422 0.7209080 3
5451  1.293375 -0.6591422 0.7209080 3
5452  1.293375 -0.6591422 0.7209080 2
5453  1.293375 -0.6591422 0.7209080 1
5454  1.293375 -0.6591422 0.7209080 3
5455  1.293375 -0.6591422 0.7209080 3
5456  1.293375 -0.6591422 0.7209080 2
5457  1.293375 -0.6591422 0.7209080 3
5458  1.293375 -0.6591422 0.7209080 1
5459  1.293375 -0.6591422 0.7209080 3
5460  1.293375 -0.6591422 0.7209080 2
5461  1.293375 -0.6591422 0.7209080 2
5462  1.293375 -0.6591422 0.7209080 2
5463  1.293375 -0.6591422 0.7209080 3
5464  1.293375 -0.6591422 0.7209080 1
5465  1.293375 -0.6591422 0.7209080 3
5466  1.293375 -0.6591422 0.7209080 3
5467  1.293375 -0.6591422 0.7209080 1
5468  1.293375 -0.6591422 0.7209080 3
5469  1.293375 -0.6591422 0.7209080 1
5470  1.293375 -0.6591422 0.7209080 2
5471  1.293375 -0.6591422 0.7209080 2
5472  1.293375 -0.6591422 0.7209080 2
5473  1.293375 -0.6591422 0.7209080 1
5474  1.293375 -0.6591422 0.7209080 1
5475  1.293375 -0.6591422 0.7209080 2
5476  1.293375 -0.6591422 0.7209080 1
5477  1.293375 -0.6591422 0.7209080 2
5478  1.293375 -0.6591422 0.7209080 2
5479  1.293375 -0.6591422 0.7209080 1
5480  1.293375 -0.6591422 0.7209080 1
5481  1.293375 -0.6591422 0.7209080 2
5482  1.293375 -0.6591422 0.7209080 3
5483  1.293375 -0.6591422 0.7209080 1
5484  1.293375 -0.6591422 0.7209080 2
5485  1.293375 -0.6591422 0.7209080 3
5486  1.293375 -0.6591422 0.7209080 3
5487  1.293375 -0.6591422 0.7209080 3
5488  1.293375 -0.6591422 0.7209080 2
5489  1.293375 -0.6591422 0.7209080 3
5490  1.293375 -0.6591422 0.7209080 2
5491  1.293375 -0.6591422 0.7209080 2
5492  1.293375 -0.6591422 0.7209080 3
5493  1.293375 -0.6591422 0.7209080 2
5494  1.293375 -0.6591422 0.7209080 2
5495  1.293375 -0.6591422 0.7209080 2
5496  1.293375 -0.6591422 0.7209080 1
5497  1.293375 -0.6591422 0.7209080 1
5498  1.293375 -0.6591422 0.7209080 2
5499  1.293375 -0.6591422 0.7209080 2
5500  1.293375 -0.6591422 0.7209080 1
5501  1.293375 -0.6591422 0.7209080 2
5502  1.293375 -0.6591422 0.7209080 1
5503  1.293375 -0.6591422 0.7209080 2
5504  1.293375 -0.6591422 0.7209080 2
5505  1.293375 -0.6591422 0.7209080 3
5506  1.293375 -0.6591422 0.7209080 2
5507  1.293375 -0.6591422 0.7209080 1
5508  1.293375 -0.6591422 0.7209080 2
5509  1.293375 -0.6591422 0.7209080 1
5510  1.293375 -0.6591422 0.7209080 2
5511  1.293375 -0.6591422 0.7209080 3
5512  1.293375 -0.6591422 0.7209080 2
5513  1.293375 -0.6591422 0.7209080 2
5514  1.293375 -0.6591422 0.7209080 2
5515  1.291899 -0.6648757 0.7257802 1
5516  1.291899 -0.6648757 0.7257802 2
5517  1.291899 -0.6648757 0.7257802 2
5518  1.291899 -0.6648757 0.7257802 1
5519  1.291899 -0.6648757 0.7257802 1
5520  1.291899 -0.6648757 0.7257802 1
5521  1.291899 -0.6648757 0.7257802 2
5522  1.291899 -0.6648757 0.7257802 2
5523  1.291899 -0.6648757 0.7257802 2
5524  1.291899 -0.6648757 0.7257802 2
5525  1.291899 -0.6648757 0.7257802 1
5526  1.291899 -0.6648757 0.7257802 2
5527  1.291899 -0.6648757 0.7257802 2
5528  1.291899 -0.6648757 0.7257802 1
5529  1.291899 -0.6648757 0.7257802 2
5530  1.291899 -0.6648757 0.7257802 1
5531  1.291899 -0.6648757 0.7257802 1
5532  1.291899 -0.6648757 0.7257802 2
5533  1.291899 -0.6648757 0.7257802 1
5534  1.291899 -0.6648757 0.7257802 1
5535  1.291899 -0.6648757 0.7257802 1
5536  1.291899 -0.6648757 0.7257802 2
5537  1.291899 -0.6648757 0.7257802 2
5538  1.291899 -0.6648757 0.7257802 2
5539  1.291899 -0.6648757 0.7257802 3
5540  1.291899 -0.6648757 0.7257802 2
5541  1.291899 -0.6648757 0.7257802 3
5542  1.291899 -0.6648757 0.7257802 1
5543  1.291899 -0.6648757 0.7257802 3
5544  1.291899 -0.6648757 0.7257802 2
5545  1.291899 -0.6648757 0.7257802 2
5546  1.291899 -0.6648757 0.7257802 3
5547  1.291899 -0.6648757 0.7257802 3
5548  1.291899 -0.6648757 0.7257802 1
5549  1.291899 -0.6648757 0.7257802 3
5550  1.291899 -0.6648757 0.7257802 3
5551  1.291899 -0.6648757 0.7257802 2
5552  1.291899 -0.6648757 0.7257802 2
5553  1.291899 -0.6648757 0.7257802 1
5554  1.291899 -0.6648757 0.7257802 1
5555  1.291899 -0.6648757 0.7257802 3
5556  1.291899 -0.6648757 0.7257802 1
5557  1.291899 -0.6648757 0.7257802 2
5558  1.291899 -0.6648757 0.7257802 2
5559  1.291899 -0.6648757 0.7257802 1
5560  1.291899 -0.6648757 0.7257802 2
5561  1.291899 -0.6648757 0.7257802 3
5562  1.291899 -0.6648757 0.7257802 1
5563  1.291899 -0.6648757 0.7257802 1
5564  1.291899 -0.6648757 0.7257802 3
5565  1.291899 -0.6648757 0.7257802 2
5566  1.291899 -0.6648757 0.7257802 3
5567  1.291899 -0.6648757 0.7257802 2
5568  1.291899 -0.6648757 0.7257802 3
5569  1.291899 -0.6648757 0.7257802 2
5570  1.291899 -0.6648757 0.7257802 2
5571  1.291899 -0.6648757 0.7257802 2
5572  1.291899 -0.6648757 0.7257802 1
5573  1.291899 -0.6648757 0.7257802 2
5574  1.291899 -0.6648757 0.7257802 3
5575  1.291899 -0.6648757 0.7257802 3
5576  1.291899 -0.6648757 0.7257802 3
5577  1.291899 -0.6648757 0.7257802 3
5578  1.291899 -0.6648757 0.7257802 2
5579  1.291899 -0.6648757 0.7257802 3
5580  1.291899 -0.6648757 0.7257802 3
5581  1.291899 -0.6648757 0.7257802 2
5582  1.291899 -0.6648757 0.7257802 1
5583  1.291899 -0.6648757 0.7257802 2
5584  1.291899 -0.6648757 0.7257802 3
5585  1.291899 -0.6648757 0.7257802 1
5586  1.291899 -0.6648757 0.7257802 1
5587  1.291899 -0.6648757 0.7257802 2
5588  1.291899 -0.6648757 0.7257802 1
5589  1.291899 -0.6648757 0.7257802 1
5590  1.291899 -0.6648757 0.7257802 3
5591  1.291899 -0.6648757 0.7257802 1
5592  1.291899 -0.6648757 0.7257802 2
5593  1.291899 -0.6648757 0.7257802 2
5594  1.291899 -0.6648757 0.7257802 2
5595  1.291899 -0.6648757 0.7257802 2
5596  1.291899 -0.6648757 0.7257802 2
5597  1.291899 -0.6648757 0.7257802 3
5598  1.291899 -0.6648757 0.7257802 1
5599  1.291899 -0.6648757 0.7257802 1
5600  1.291899 -0.6648757 0.7257802 2
5601  1.291899 -0.6648757 0.7257802 2
5602  1.291899 -0.6648757 0.7257802 3
5603  1.291899 -0.6648757 0.7257802 3
5604  1.291899 -0.6648757 0.7257802 2
5605  1.291899 -0.6648757 0.7257802 1
5606  1.291899 -0.6648757 0.7257802 3
5607  1.291899 -0.6648757 0.7257802 1
5608  1.291899 -0.6648757 0.7257802 1
5609  1.291899 -0.6648757 0.7257802 2
5610  1.291899 -0.6648757 0.7257802 2
5611  1.291899 -0.6648757 0.7257802 3
5612  1.291899 -0.6648757 0.7257802 3
5613  1.291899 -0.6648757 0.7257802 2
5614  1.291899 -0.6648757 0.7257802 1
5615  1.291899 -0.6648757 0.7257802 3
5616  1.291899 -0.6648757 0.7257802 1
5617  1.291899 -0.6648757 0.7257802 3
5618  1.291899 -0.6648757 0.7257802 2
5619  1.291899 -0.6648757 0.7257802 1
5620  1.291899 -0.6648757 0.7257802 2
5621  1.291899 -0.6648757 0.7257802 2
5622  1.291899 -0.6648757 0.7257802 2
5623  1.291899 -0.6648757 0.7257802 2
5624  1.291899 -0.6648757 0.7257802 1
5625  1.291899 -0.6648757 0.7257802 2
5626  1.291899 -0.6648757 0.7257802 1
5627  1.291899 -0.6648757 0.7257802 3
5628  1.291899 -0.6648757 0.7257802 1
5629  1.291899 -0.6648757 0.7257802 3
5630  1.291899 -0.6648757 0.7257802 3
5631  1.291899 -0.6648757 0.7257802 2
5632  1.291899 -0.6648757 0.7257802 2
5633  1.291899 -0.6648757 0.7257802 2
5634  1.291899 -0.6648757 0.7257802 1
5635  1.291899 -0.6648757 0.7257802 1
5636  1.291899 -0.6648757 0.7257802 3
5637  1.291899 -0.6648757 0.7257802 1
5638  1.291899 -0.6648757 0.7257802 3
5639  1.291899 -0.6648757 0.7257802 1
5640  1.291899 -0.6648757 0.7257802 3
5641  1.291899 -0.6648757 0.7257802 2
5642  1.291899 -0.6648757 0.7257802 2
5643  1.291899 -0.6648757 0.7257802 3
5644  1.291899 -0.6648757 0.7257802 1
5645  1.291899 -0.6648757 0.7257802 3
5646  1.291899 -0.6648757 0.7257802 1
5647  1.291899 -0.6648757 0.7257802 3
5648  1.291899 -0.6648757 0.7257802 2
5649  1.291899 -0.6648757 0.7257802 3
5650  1.291899 -0.6648757 0.7257802 1
5651  1.291899 -0.6648757 0.7257802 3
5652  1.291899 -0.6648757 0.7257802 3
5653  1.291899 -0.6648757 0.7257802 2
5654  1.291899 -0.6648757 0.7257802 2
5655  1.291899 -0.6648757 0.7257802 2
5656  1.291899 -0.6648757 0.7257802 2
5657  1.291899 -0.6648757 0.7257802 1
5658  1.291899 -0.6648757 0.7257802 1
5659  1.291899 -0.6648757 0.7257802 3
5660  1.291899 -0.6648757 0.7257802 1
5661  1.291899 -0.6648757 0.7257802 3
5662  1.291899 -0.6648757 0.7257802 3
5663  1.291899 -0.6648757 0.7257802 1
5664  1.291899 -0.6648757 0.7257802 1
5665  1.291899 -0.6648757 0.7257802 1
5666  1.291899 -0.6648757 0.7257802 3
5667  1.291899 -0.6648757 0.7257802 3
5668  1.291899 -0.6648757 0.7257802 3
5669  1.291899 -0.6648757 0.7257802 3
5670  1.291899 -0.6648757 0.7257802 3
5671  1.291899 -0.6648757 0.7257802 2
5672  1.291899 -0.6648757 0.7257802 2
5673  1.291899 -0.6648757 0.7257802 1
5674  1.291899 -0.6648757 0.7257802 1
5675  1.291899 -0.6648757 0.7257802 2
5676  1.291899 -0.6648757 0.7257802 3
5677  1.291899 -0.6648757 0.7257802 3
5678  1.291899 -0.6648757 0.7257802 3
5679  1.291899 -0.6648757 0.7257802 1
5680  1.291899 -0.6648757 0.7257802 1
5681  1.291899 -0.6648757 0.7257802 2
5682  1.291899 -0.6648757 0.7257802 1
5683  1.291899 -0.6648757 0.7257802 2
5684  1.291899 -0.6648757 0.7257802 2
5685  1.291899 -0.6648757 0.7257802 2
5686  1.291899 -0.6648757 0.7257802 2
5687  1.291899 -0.6648757 0.7257802 1
5688  1.291899 -0.6648757 0.7257802 2
5689  1.291899 -0.6648757 0.7257802 3
5690  1.291899 -0.6648757 0.7257802 2
5691  1.291899 -0.6648757 0.7257802 3
5692  1.291899 -0.6648757 0.7257802 1
5693  1.291899 -0.6648757 0.7257802 3
5694  1.291899 -0.6648757 0.7257802 1
5695  1.291899 -0.6648757 0.7257802 3
5696  1.291899 -0.6648757 0.7257802 3
5697  1.291899 -0.6648757 0.7257802 3
5698  1.291899 -0.6648757 0.7257802 2
5699  1.291899 -0.6648757 0.7257802 3
5700  1.291899 -0.6648757 0.7257802 1
5701  1.291899 -0.6648757 0.7257802 3
5702  1.291899 -0.6648757 0.7257802 2
5703  1.291899 -0.6648757 0.7257802 1
5704  1.291899 -0.6648757 0.7257802 1
5705  1.291899 -0.6648757 0.7257802 3
5706  1.291899 -0.6648757 0.7257802 3
5707  1.291899 -0.6648757 0.7257802 3
5708  1.291899 -0.6648757 0.7257802 2
5709  1.291899 -0.6648757 0.7257802 2
5710  1.291899 -0.6648757 0.7257802 3
5711  1.291899 -0.6648757 0.7257802 1
5712  1.291899 -0.6648757 0.7257802 3
5713  1.291899 -0.6648757 0.7257802 3
5714  1.291899 -0.6648757 0.7257802 2
5715  1.291899 -0.6648757 0.7257802 3
5716  1.291899 -0.6648757 0.7257802 3
5717  1.291899 -0.6648757 0.7257802 2
5718  1.291899 -0.6648757 0.7257802 2
5719  1.291899 -0.6648757 0.7257802 3
5720  1.291899 -0.6648757 0.7257802 2
5721  1.291899 -0.6648757 0.7257802 3
5722  1.291899 -0.6648757 0.7257802 2
5723  1.291899 -0.6648757 0.7257802 1
5724  1.291899 -0.6648757 0.7257802 3
5725  1.291899 -0.6648757 0.7257802 1
5726  1.291899 -0.6648757 0.7257802 2
5727  1.291899 -0.6648757 0.7257802 2
5728  1.291899 -0.6648757 0.7257802 1
5729  1.291899 -0.6648757 0.7257802 2
5730  1.291899 -0.6648757 0.7257802 1
5731  1.291899 -0.6648757 0.7257802 2
5732  1.291899 -0.6648757 0.7257802 2
5733  1.291899 -0.6648757 0.7257802 3
5734  1.291899 -0.6648757 0.7257802 2
5735  1.291899 -0.6648757 0.7257802 1
5736  1.291899 -0.6648757 0.7257802 3
5737  1.291899 -0.6648757 0.7257802 1
5738  1.291899 -0.6648757 0.7257802 3
5739  1.291899 -0.6648757 0.7257802 1
5740  1.291899 -0.6648757 0.7257802 2
5741  1.291899 -0.6648757 0.7257802 1
5742  1.291899 -0.6648757 0.7257802 2
5743  1.291899 -0.6648757 0.7257802 3
5744  1.291899 -0.6648757 0.7257802 3
5745  1.291899 -0.6648757 0.7257802 1
5746  1.291899 -0.6648757 0.7257802 1
5747  1.291899 -0.6648757 0.7257802 2
5748  1.291899 -0.6648757 0.7257802 1
5749  1.291899 -0.6648757 0.7257802 2
5750  1.291899 -0.6648757 0.7257802 3
5751  1.291899 -0.6648757 0.7257802 2
5752  1.291899 -0.6648757 0.7257802 3
5753  1.291899 -0.6648757 0.7257802 3
5754  1.291899 -0.6648757 0.7257802 2
5755  1.291899 -0.6648757 0.7257802 3
5756  1.291899 -0.6648757 0.7257802 2
5757  1.291899 -0.6648757 0.7257802 1
5758  1.291899 -0.6648757 0.7257802 3
5759  1.291899 -0.6648757 0.7257802 2
5760  1.291899 -0.6648757 0.7257802 2
5761  1.291899 -0.6648757 0.7257802 1
5762  1.291899 -0.6648757 0.7257802 3
5763  1.291899 -0.6648757 0.7257802 2
5764  1.291899 -0.6648757 0.7257802 1
5765  1.291899 -0.6648757 0.7257802 2
5766  1.291899 -0.6648757 0.7257802 2
5767  1.291899 -0.6648757 0.7257802 2
5768  1.291899 -0.6648757 0.7257802 3
5769  1.291899 -0.6648757 0.7257802 2
5770  1.291899 -0.6648757 0.7257802 3
5771  1.291899 -0.6648757 0.7257802 1
5772  1.291899 -0.6648757 0.7257802 3
5773  1.291899 -0.6648757 0.7257802 2
5774  1.291899 -0.6648757 0.7257802 3
5775  1.291899 -0.6648757 0.7257802 1
5776  1.291899 -0.6648757 0.7257802 1
5777  1.291899 -0.6648757 0.7257802 3
5778  1.291899 -0.6648757 0.7257802 2
5779  1.291899 -0.6648757 0.7257802 2
5780  1.291899 -0.6648757 0.7257802 2
5781  1.291899 -0.6648757 0.7257802 1
5782  1.291899 -0.6648757 0.7257802 2
5783  1.291899 -0.6648757 0.7257802 2
5784  1.291899 -0.6648757 0.7257802 2
5785  1.291899 -0.6648757 0.7257802 3
5786  1.291899 -0.6648757 0.7257802 3
5787  1.291899 -0.6648757 0.7257802 1
5788  1.291899 -0.6648757 0.7257802 1
5789  1.291899 -0.6648757 0.7257802 1
5790  1.291899 -0.6648757 0.7257802 1
5791  1.291899 -0.6648757 0.7257802 2
5792  1.291899 -0.6648757 0.7257802 1
5793  1.291899 -0.6648757 0.7257802 1
5794  1.291899 -0.6648757 0.7257802 3
5795  1.291899 -0.6648757 0.7257802 3
5796  1.291899 -0.6648757 0.7257802 3
5797  1.291899 -0.6648757 0.7257802 3
5798  1.291899 -0.6648757 0.7257802 3
5799  1.291899 -0.6648757 0.7257802 3
5800  1.291899 -0.6648757 0.7257802 3
5801  1.291899 -0.6648757 0.7257802 3
5802  1.291899 -0.6648757 0.7257802 2
5803  1.291899 -0.6648757 0.7257802 1
5804  1.291899 -0.6648757 0.7257802 2
5805  1.291899 -0.6648757 0.7257802 1
5806  1.291899 -0.6648757 0.7257802 1
5807  1.291899 -0.6648757 0.7257802 1
5808  1.291899 -0.6648757 0.7257802 2
5809  1.291899 -0.6648757 0.7257802 2
5810  1.291899 -0.6648757 0.7257802 1
5811  1.291899 -0.6648757 0.7257802 1
5812  1.291899 -0.6648757 0.7257802 3
5813  1.291899 -0.6648757 0.7257802 2
5814  1.291899 -0.6648757 0.7257802 2
5815  1.291899 -0.6648757 0.7257802 2
5816  1.291899 -0.6648757 0.7257802 1
5817  1.291899 -0.6648757 0.7257802 3
5818  1.291899 -0.6648757 0.7257802 3
5819  1.291899 -0.6648757 0.7257802 1
5820  1.291899 -0.6648757 0.7257802 3
5821  1.291899 -0.6648757 0.7257802 2
5822  1.291899 -0.6648757 0.7257802 2
5823  1.291899 -0.6648757 0.7257802 2
5824  1.291899 -0.6648757 0.7257802 3
5825  1.291899 -0.6648757 0.7257802 1
5826  1.291899 -0.6648757 0.7257802 3
5827  1.291899 -0.6648757 0.7257802 1
5828  1.291899 -0.6648757 0.7257802 2
5829  1.291899 -0.6648757 0.7257802 1
5830  1.291899 -0.6648757 0.7257802 2
5831  1.291899 -0.6648757 0.7257802 1
5832  1.291899 -0.6648757 0.7257802 1
5833  1.291899 -0.6648757 0.7257802 1
5834  1.291899 -0.6648757 0.7257802 2
5835  1.291899 -0.6648757 0.7257802 2
5836  1.291899 -0.6648757 0.7257802 1
5837  1.291899 -0.6648757 0.7257802 3
5838  1.291899 -0.6648757 0.7257802 3
5839  1.291899 -0.6648757 0.7257802 3
5840  1.291899 -0.6648757 0.7257802 2
5841  1.291899 -0.6648757 0.7257802 3
5842  1.291899 -0.6648757 0.7257802 1
5843  1.291899 -0.6648757 0.7257802 2
5844  1.291899 -0.6648757 0.7257802 3
5845  1.291899 -0.6648757 0.7257802 2
5846  1.291899 -0.6648757 0.7257802 2
5847  1.291899 -0.6648757 0.7257802 1
5848  1.291899 -0.6648757 0.7257802 1
5849  1.291899 -0.6648757 0.7257802 1
5850  1.291899 -0.6648757 0.7257802 1
5851  1.291899 -0.6648757 0.7257802 2
5852  1.291899 -0.6648757 0.7257802 2
5853  1.291899 -0.6648757 0.7257802 2
5854  1.291899 -0.6648757 0.7257802 2
5855  1.291899 -0.6648757 0.7257802 1
5856  1.291899 -0.6648757 0.7257802 3
5857  1.291899 -0.6648757 0.7257802 2
5858  1.291899 -0.6648757 0.7257802 2
5859  1.291899 -0.6648757 0.7257802 3
5860  1.291899 -0.6648757 0.7257802 3
5861  1.291899 -0.6648757 0.7257802 1
5862  1.291899 -0.6648757 0.7257802 3
5863  1.291899 -0.6648757 0.7257802 2
5864  1.291899 -0.6648757 0.7257802 3
5865  1.291899 -0.6648757 0.7257802 2
5866  1.291899 -0.6648757 0.7257802 1
5867  1.291899 -0.6648757 0.7257802 2
5868  1.291899 -0.6648757 0.7257802 2
5869  1.291899 -0.6648757 0.7257802 1
5870  1.291899 -0.6648757 0.7257802 3
5871  1.291899 -0.6648757 0.7257802 2
5872  1.291899 -0.6648757 0.7257802 3
5873  1.291899 -0.6648757 0.7257802 3
5874  1.291899 -0.6648757 0.7257802 3
5875  1.291899 -0.6648757 0.7257802 3
5876  1.291899 -0.6648757 0.7257802 1
5877  1.291899 -0.6648757 0.7257802 3
5878  1.291899 -0.6648757 0.7257802 3
5879  1.291899 -0.6648757 0.7257802 2
5880  1.291899 -0.6648757 0.7257802 3
5881  1.291899 -0.6648757 0.7257802 3
5882  1.291899 -0.6648757 0.7257802 1
5883  1.291899 -0.6648757 0.7257802 2
5884  1.291899 -0.6648757 0.7257802 3
5885  1.291899 -0.6648757 0.7257802 3
5886  1.291899 -0.6648757 0.7257802 3
5887  1.291899 -0.6648757 0.7257802 1
5888  1.291899 -0.6648757 0.7257802 2
5889  1.291899 -0.6648757 0.7257802 1
5890  1.291899 -0.6648757 0.7257802 3
5891  1.291899 -0.6648757 0.7257802 3
5892  1.291899 -0.6648757 0.7257802 3
5893  1.291899 -0.6648757 0.7257802 2
5894  1.291899 -0.6648757 0.7257802 2
5895  1.291899 -0.6648757 0.7257802 2
5896  1.291899 -0.6648757 0.7257802 2
5897  1.291899 -0.6648757 0.7257802 1
5898  1.291899 -0.6648757 0.7257802 3
5899  1.291899 -0.6648757 0.7257802 1
5900  1.291899 -0.6648757 0.7257802 1
5901  1.291899 -0.6648757 0.7257802 2
5902  1.291899 -0.6648757 0.7257802 1
5903  1.291899 -0.6648757 0.7257802 3
5904  1.291899 -0.6648757 0.7257802 3
5905  1.291899 -0.6648757 0.7257802 2
5906  1.291899 -0.6648757 0.7257802 3
5907  1.291899 -0.6648757 0.7257802 1
5908  1.291899 -0.6648757 0.7257802 3
5909  1.291899 -0.6648757 0.7257802 1
5910  1.291899 -0.6648757 0.7257802 3
5911  1.291899 -0.6648757 0.7257802 1
5912  1.291899 -0.6648757 0.7257802 1
5913  1.291899 -0.6648757 0.7257802 1
5914  1.291899 -0.6648757 0.7257802 1
5915  1.291899 -0.6648757 0.7257802 3
5916  1.291899 -0.6648757 0.7257802 3
5917  1.291899 -0.6648757 0.7257802 3
5918  1.291899 -0.6648757 0.7257802 1
5919  1.291899 -0.6648757 0.7257802 3
5920  1.291899 -0.6648757 0.7257802 2
5921  1.291899 -0.6648757 0.7257802 2
5922  1.291899 -0.6648757 0.7257802 3
5923  1.291899 -0.6648757 0.7257802 1
5924  1.291899 -0.6648757 0.7257802 1
5925  1.291899 -0.6648757 0.7257802 1
5926  1.291899 -0.6648757 0.7257802 2
5927  1.291899 -0.6648757 0.7257802 2
5928  1.291899 -0.6648757 0.7257802 3
5929  1.291899 -0.6648757 0.7257802 3
5930  1.291899 -0.6648757 0.7257802 3
5931  1.291899 -0.6648757 0.7257802 1
5932  1.291899 -0.6648757 0.7257802 3
5933  1.291899 -0.6648757 0.7257802 2
5934  1.291899 -0.6648757 0.7257802 2
5935  1.291899 -0.6648757 0.7257802 3
5936  1.291899 -0.6648757 0.7257802 2
5937  1.291899 -0.6648757 0.7257802 3
5938  1.291899 -0.6648757 0.7257802 2
5939  1.291899 -0.6648757 0.7257802 2
5940  1.291899 -0.6648757 0.7257802 1
5941  1.291899 -0.6648757 0.7257802 1
5942  1.291899 -0.6648757 0.7257802 1
5943  1.291899 -0.6648757 0.7257802 1
5944  1.291899 -0.6648757 0.7257802 3
5945  1.291899 -0.6648757 0.7257802 2
5946  1.291899 -0.6648757 0.7257802 1
5947  1.291899 -0.6648757 0.7257802 2
5948  1.291899 -0.6648757 0.7257802 3
5949  1.291899 -0.6648757 0.7257802 1
5950  1.291899 -0.6648757 0.7257802 2
5951  1.291899 -0.6648757 0.7257802 2
5952  1.291899 -0.6648757 0.7257802 3
5953  1.291899 -0.6648757 0.7257802 2
5954  1.291899 -0.6648757 0.7257802 1
5955  1.291899 -0.6648757 0.7257802 3
5956  1.291899 -0.6648757 0.7257802 2
5957  1.291899 -0.6648757 0.7257802 2
5958  1.291899 -0.6648757 0.7257802 1
5959  1.291899 -0.6648757 0.7257802 1
5960  1.291899 -0.6648757 0.7257802 1
5961  1.291899 -0.6648757 0.7257802 1
5962  1.291899 -0.6648757 0.7257802 3
5963  1.291899 -0.6648757 0.7257802 2
5964  1.291899 -0.6648757 0.7257802 3
5965  1.291899 -0.6648757 0.7257802 3
5966  1.291899 -0.6648757 0.7257802 3
5967  1.291899 -0.6648757 0.7257802 3
5968  1.291899 -0.6648757 0.7257802 1
5969  1.291899 -0.6648757 0.7257802 2
5970  1.291899 -0.6648757 0.7257802 1
5971  1.291899 -0.6648757 0.7257802 2
5972  1.291899 -0.6648757 0.7257802 3
5973  1.291899 -0.6648757 0.7257802 3
5974  1.291899 -0.6648757 0.7257802 1
5975  1.291899 -0.6648757 0.7257802 2
5976  1.291899 -0.6648757 0.7257802 2
5977  1.291899 -0.6648757 0.7257802 1
5978  1.291899 -0.6648757 0.7257802 2
5979  1.291899 -0.6648757 0.7257802 3
5980  1.291899 -0.6648757 0.7257802 1
5981  1.291899 -0.6648757 0.7257802 1
5982  1.291899 -0.6648757 0.7257802 3
5983  1.291899 -0.6648757 0.7257802 3
5984  1.291899 -0.6648757 0.7257802 2
5985  1.291899 -0.6648757 0.7257802 3
5986  1.291899 -0.6648757 0.7257802 2
5987  1.291899 -0.6648757 0.7257802 1
5988  1.291899 -0.6648757 0.7257802 3
5989  1.291899 -0.6648757 0.7257802 3
5990  1.291899 -0.6648757 0.7257802 1
5991  1.291899 -0.6648757 0.7257802 3
5992  1.291899 -0.6648757 0.7257802 1
5993  1.291899 -0.6648757 0.7257802 2
5994  1.291899 -0.6648757 0.7257802 2
5995  1.291899 -0.6648757 0.7257802 1
5996  1.291899 -0.6648757 0.7257802 3
5997  1.291899 -0.6648757 0.7257802 3
5998  1.291899 -0.6648757 0.7257802 1
5999  1.291899 -0.6648757 0.7257802 3
6000  1.291899 -0.6648757 0.7257802 3
6001  1.291899 -0.6648757 0.7257802 3
6002  1.291899 -0.6648757 0.7257802 3
6003  1.291899 -0.6648757 0.7257802 2
6004  1.291899 -0.6648757 0.7257802 3
6005  1.291899 -0.6648757 0.7257802 1
6006  1.291899 -0.6648757 0.7257802 1
6007  1.291899 -0.6648757 0.7257802 3
6008  1.291899 -0.6648757 0.7257802 1
6009  1.291899 -0.6648757 0.7257802 3
6010  1.291899 -0.6648757 0.7257802 3
6011  1.291899 -0.6648757 0.7257802 1
6012  1.291899 -0.6648757 0.7257802 2
6013  1.291899 -0.6648757 0.7257802 2
6014  1.291899 -0.6648757 0.7257802 3
6015  1.291899 -0.6648757 0.7257802 3
6016  1.291899 -0.6648757 0.7257802 2
6017  1.291899 -0.6648757 0.7257802 2
6018  1.291899 -0.6648757 0.7257802 3
6019  1.291899 -0.6648757 0.7257802 2
6020  1.291899 -0.6648757 0.7257802 1
6021  1.291899 -0.6648757 0.7257802 3
6022  1.291899 -0.6648757 0.7257802 2
6023  1.291899 -0.6648757 0.7257802 3
6024  1.291899 -0.6648757 0.7257802 1
6025  1.291899 -0.6648757 0.7257802 1
6026  1.291899 -0.6648757 0.7257802 3
6027  1.291899 -0.6648757 0.7257802 3
6028  1.291899 -0.6648757 0.7257802 2
6029  1.291899 -0.6648757 0.7257802 3
6030  1.291899 -0.6648757 0.7257802 3
6031  1.291899 -0.6648757 0.7257802 2
6032  1.291899 -0.6648757 0.7257802 2
6033  1.291899 -0.6648757 0.7257802 2
6034  1.291899 -0.6648757 0.7257802 3
6035  1.291899 -0.6648757 0.7257802 3
6036  1.291899 -0.6648757 0.7257802 3
6037  1.291899 -0.6648757 0.7257802 1
6038  1.291899 -0.6648757 0.7257802 1
6039  1.291899 -0.6648757 0.7257802 1
6040  1.291899 -0.6648757 0.7257802 2
6041  1.291899 -0.6648757 0.7257802 2
6042  1.291899 -0.6648757 0.7257802 3
6043  1.291899 -0.6648757 0.7257802 1
6044  1.291899 -0.6648757 0.7257802 2
6045  1.291899 -0.6648757 0.7257802 1
6046  1.291899 -0.6648757 0.7257802 1
6047  1.291899 -0.6648757 0.7257802 1
6048  1.291899 -0.6648757 0.7257802 3
6049  1.291899 -0.6648757 0.7257802 2
6050  1.291899 -0.6648757 0.7257802 1
6051  1.291899 -0.6648757 0.7257802 3
6052  1.291899 -0.6648757 0.7257802 2
6053  1.291899 -0.6648757 0.7257802 1
6054  1.291899 -0.6648757 0.7257802 3
6055  1.291899 -0.6648757 0.7257802 2
6056  1.291899 -0.6648757 0.7257802 3
6057  1.291899 -0.6648757 0.7257802 3
6058  1.291899 -0.6648757 0.7257802 1
6059  1.291899 -0.6648757 0.7257802 1
6060  1.291899 -0.6648757 0.7257802 1
6061  1.291899 -0.6648757 0.7257802 3
6062  1.291899 -0.6648757 0.7257802 1
6063  1.291899 -0.6648757 0.7257802 3
6064  1.291899 -0.6648757 0.7257802 2
6065  1.291899 -0.6648757 0.7257802 3
6066  1.291899 -0.6648757 0.7257802 1
6067  1.291899 -0.6648757 0.7257802 3
6068  1.291899 -0.6648757 0.7257802 3
6069  1.291899 -0.6648757 0.7257802 1
6070  1.291899 -0.6648757 0.7257802 2
6071  1.291899 -0.6648757 0.7257802 1
6072  1.291899 -0.6648757 0.7257802 2
6073  1.291899 -0.6648757 0.7257802 3
6074  1.291899 -0.6648757 0.7257802 3
6075  1.291899 -0.6648757 0.7257802 2
6076  1.291899 -0.6648757 0.7257802 1
6077  1.291899 -0.6648757 0.7257802 3
6078  1.291899 -0.6648757 0.7257802 3
6079  1.291899 -0.6648757 0.7257802 1
6080  1.291899 -0.6648757 0.7257802 2
6081  1.291899 -0.6648757 0.7257802 2
6082  1.291899 -0.6648757 0.7257802 3
6083  1.291899 -0.6648757 0.7257802 2
6084  1.291899 -0.6648757 0.7257802 2
6085  1.291899 -0.6648757 0.7257802 1
6086  1.291899 -0.6648757 0.7257802 3
6087  1.291899 -0.6648757 0.7257802 2
6088  1.291899 -0.6648757 0.7257802 2
6089  1.291899 -0.6648757 0.7257802 3
6090  1.291899 -0.6648757 0.7257802 3
6091  1.291899 -0.6648757 0.7257802 2
6092  1.291899 -0.6648757 0.7257802 3
6093  1.291899 -0.6648757 0.7257802 3
6094  1.291899 -0.6648757 0.7257802 1
6095  1.291899 -0.6648757 0.7257802 3
6096  1.291899 -0.6648757 0.7257802 1
6097  1.291899 -0.6648757 0.7257802 2
6098  1.291899 -0.6648757 0.7257802 1
6099  1.291899 -0.6648757 0.7257802 3
6100  1.291899 -0.6648757 0.7257802 3
6101  1.291899 -0.6648757 0.7257802 3
6102  1.291899 -0.6648757 0.7257802 1
6103  1.291899 -0.6648757 0.7257802 1
6104  1.291899 -0.6648757 0.7257802 2
6105  1.291899 -0.6648757 0.7257802 1
6106  1.291899 -0.6648757 0.7257802 3
6107  1.291899 -0.6648757 0.7257802 2
6108  1.291899 -0.6648757 0.7257802 1
6109  1.291899 -0.6648757 0.7257802 1
6110  1.291899 -0.6648757 0.7257802 1
6111  1.291899 -0.6648757 0.7257802 1
6112  1.291899 -0.6648757 0.7257802 2
6113  1.291899 -0.6648757 0.7257802 3
6114  1.291899 -0.6648757 0.7257802 1
6115  1.291899 -0.6648757 0.7257802 3
6116  1.291899 -0.6648757 0.7257802 2
6117  1.291899 -0.6648757 0.7257802 3
6118  1.291899 -0.6648757 0.7257802 2
6119  1.291899 -0.6648757 0.7257802 3
6120  1.291899 -0.6648757 0.7257802 3
6121  1.291899 -0.6648757 0.7257802 3
6122  1.291899 -0.6648757 0.7257802 3
6123  1.291899 -0.6648757 0.7257802 1
6124  1.291899 -0.6648757 0.7257802 2
6125  1.291899 -0.6648757 0.7257802 3
6126  1.291899 -0.6648757 0.7257802 3
6127  1.291899 -0.6648757 0.7257802 1
6128  1.291899 -0.6648757 0.7257802 3
6129  1.291899 -0.6648757 0.7257802 2
6130  1.291899 -0.6648757 0.7257802 1
6131  1.291899 -0.6648757 0.7257802 3
6132  1.291899 -0.6648757 0.7257802 1
6133  1.291899 -0.6648757 0.7257802 2
6134  1.291899 -0.6648757 0.7257802 1
6135  1.291899 -0.6648757 0.7257802 2
6136  1.291899 -0.6648757 0.7257802 3
6137  1.291899 -0.6648757 0.7257802 1
6138  1.291899 -0.6648757 0.7257802 2
6139  1.291899 -0.6648757 0.7257802 3
6140  1.291899 -0.6648757 0.7257802 3
6141  1.291899 -0.6648757 0.7257802 2
6142  1.291899 -0.6648757 0.7257802 2
6143  1.291899 -0.6648757 0.7257802 1
6144  1.291899 -0.6648757 0.7257802 2
6145  1.291899 -0.6648757 0.7257802 1
6146  1.291899 -0.6648757 0.7257802 2
6147  1.291899 -0.6648757 0.7257802 1
6148  1.291899 -0.6648757 0.7257802 3
6149  1.291899 -0.6648757 0.7257802 2
6150  1.291899 -0.6648757 0.7257802 1
6151  1.291899 -0.6648757 0.7257802 1
6152  1.291899 -0.6648757 0.7257802 3
6153  1.291899 -0.6648757 0.7257802 1
6154  1.291899 -0.6648757 0.7257802 3
6155  1.291899 -0.6648757 0.7257802 2
6156  1.291899 -0.6648757 0.7257802 2
6157  1.291899 -0.6648757 0.7257802 3
6158  1.291899 -0.6648757 0.7257802 3
6159  1.291899 -0.6648757 0.7257802 3
6160  1.291899 -0.6648757 0.7257802 2
6161  1.291899 -0.6648757 0.7257802 3
6162  1.291899 -0.6648757 0.7257802 3
6163  1.291899 -0.6648757 0.7257802 2
6164  1.291899 -0.6648757 0.7257802 1
6165  1.291899 -0.6648757 0.7257802 1
6166  1.291899 -0.6648757 0.7257802 1
6167  1.291899 -0.6648757 0.7257802 1
6168  1.291899 -0.6648757 0.7257802 2
6169  1.291899 -0.6648757 0.7257802 1
6170  1.291899 -0.6648757 0.7257802 3
6171  1.291899 -0.6648757 0.7257802 2
6172  1.291899 -0.6648757 0.7257802 2
6173  1.291899 -0.6648757 0.7257802 2
6174  1.291899 -0.6648757 0.7257802 1
6175  1.291899 -0.6648757 0.7257802 2
6176  1.291899 -0.6648757 0.7257802 1
6177  1.291899 -0.6648757 0.7257802 2
6178  1.291899 -0.6648757 0.7257802 2
6179  1.291899 -0.6648757 0.7257802 1
6180  1.291899 -0.6648757 0.7257802 1
6181  1.291899 -0.6648757 0.7257802 2
6182  1.291899 -0.6648757 0.7257802 3
6183  1.291899 -0.6648757 0.7257802 3
6184  1.291899 -0.6648757 0.7257802 2
6185  1.291899 -0.6648757 0.7257802 3
6186  1.291899 -0.6648757 0.7257802 2
6187  1.291899 -0.6648757 0.7257802 1
6188  1.291899 -0.6648757 0.7257802 1
6189  1.291899 -0.6648757 0.7257802 1
6190  1.291899 -0.6648757 0.7257802 1
6191  1.291899 -0.6648757 0.7257802 2
6192  1.291899 -0.6648757 0.7257802 1
6193  1.291899 -0.6648757 0.7257802 2
6194  1.291899 -0.6648757 0.7257802 3
6195  1.291899 -0.6648757 0.7257802 3
6196  1.291899 -0.6648757 0.7257802 1
6197  1.291899 -0.6648757 0.7257802 1
6198  1.291899 -0.6648757 0.7257802 2
6199  1.291899 -0.6648757 0.7257802 1
6200  1.291899 -0.6648757 0.7257802 1
6201  1.291899 -0.6648757 0.7257802 2
6202  1.291899 -0.6648757 0.7257802 3
6203  1.291899 -0.6648757 0.7257802 2
6204  1.291899 -0.6648757 0.7257802 2
6205  1.291899 -0.6648757 0.7257802 3
6206  1.291899 -0.6648757 0.7257802 1
6207  1.291899 -0.6648757 0.7257802 2
6208  1.291899 -0.6648757 0.7257802 1
6209  1.291899 -0.6648757 0.7257802 1
6210  1.291899 -0.6648757 0.7257802 3
6211  1.291899 -0.6648757 0.7257802 1
6212  1.291899 -0.6648757 0.7257802 2
6213  1.291899 -0.6648757 0.7257802 1
6214  1.291899 -0.6648757 0.7257802 1
6215  1.291899 -0.6648757 0.7257802 2
6216  1.291899 -0.6648757 0.7257802 2
6217  1.291899 -0.6648757 0.7257802 2
6218  1.291899 -0.6648757 0.7257802 1
6219  1.291899 -0.6648757 0.7257802 2
6220  1.291899 -0.6648757 0.7257802 3
6221  1.291899 -0.6648757 0.7257802 1
6222  1.291899 -0.6648757 0.7257802 3
6223  1.291899 -0.6648757 0.7257802 2
6224  1.291899 -0.6648757 0.7257802 1
6225  1.291899 -0.6648757 0.7257802 1
6226  1.291899 -0.6648757 0.7257802 1
6227  1.291899 -0.6648757 0.7257802 1
6228  1.291899 -0.6648757 0.7257802 3
6229  1.291899 -0.6648757 0.7257802 1
6230  1.291899 -0.6648757 0.7257802 1
6231  1.291899 -0.6648757 0.7257802 3
6232  1.291899 -0.6648757 0.7257802 1
6233  1.291899 -0.6648757 0.7257802 2
6234  1.291899 -0.6648757 0.7257802 2
6235  1.291899 -0.6648757 0.7257802 3
6236  1.291899 -0.6648757 0.7257802 1
6237  1.291899 -0.6648757 0.7257802 1
6238  1.291899 -0.6648757 0.7257802 1
6239  1.291899 -0.6648757 0.7257802 2
6240  1.291899 -0.6648757 0.7257802 2
6241  1.291899 -0.6648757 0.7257802 1
6242  1.291899 -0.6648757 0.7257802 3
6243  1.291899 -0.6648757 0.7257802 1
6244  1.291899 -0.6648757 0.7257802 3
6245  1.291899 -0.6648757 0.7257802 1
6246  1.291899 -0.6648757 0.7257802 1
6247  1.291899 -0.6648757 0.7257802 1
6248  1.291899 -0.6648757 0.7257802 1
6249  1.291899 -0.6648757 0.7257802 1
6250  1.291899 -0.6648757 0.7257802 1
6251  1.291899 -0.6648757 0.7257802 2
6252  1.291899 -0.6648757 0.7257802 1
6253  1.291899 -0.6648757 0.7257802 3
6254  1.291899 -0.6648757 0.7257802 3
6255  1.291899 -0.6648757 0.7257802 2
6256  1.291899 -0.6648757 0.7257802 2
6257  1.291899 -0.6648757 0.7257802 3
6258  1.291899 -0.6648757 0.7257802 1
6259  1.291899 -0.6648757 0.7257802 2
6260  1.291899 -0.6648757 0.7257802 1
6261  1.291899 -0.6648757 0.7257802 2
6262  1.291899 -0.6648757 0.7257802 1
6263  1.291899 -0.6648757 0.7257802 1
6264  1.291899 -0.6648757 0.7257802 3
6265  1.291899 -0.6648757 0.7257802 1
6266  1.291899 -0.6648757 0.7257802 3
6267  1.291899 -0.6648757 0.7257802 3
6268  1.291899 -0.6648757 0.7257802 2
6269  1.291899 -0.6648757 0.7257802 2
6270  1.291899 -0.6648757 0.7257802 1
6271  1.291899 -0.6648757 0.7257802 1
6272  1.291899 -0.6648757 0.7257802 3
6273  1.291899 -0.6648757 0.7257802 2
6274  1.291899 -0.6648757 0.7257802 2
6275  1.291899 -0.6648757 0.7257802 2
6276  1.291899 -0.6648757 0.7257802 2
6277  1.291899 -0.6648757 0.7257802 3
6278  1.291899 -0.6648757 0.7257802 2
6279  1.291899 -0.6648757 0.7257802 3
6280  1.291899 -0.6648757 0.7257802 1
6281  1.291899 -0.6648757 0.7257802 2
6282  1.291899 -0.6648757 0.7257802 1
6283  1.291899 -0.6648757 0.7257802 2
6284  1.291899 -0.6648757 0.7257802 1
6285  1.291899 -0.6648757 0.7257802 1
6286  1.291899 -0.6648757 0.7257802 2
6287  1.291899 -0.6648757 0.7257802 1
6288  1.291899 -0.6648757 0.7257802 1
6289  1.291899 -0.6648757 0.7257802 1
6290  1.291899 -0.6648757 0.7257802 3
6291  1.291899 -0.6648757 0.7257802 3
6292  1.291899 -0.6648757 0.7257802 1
6293  1.291899 -0.6648757 0.7257802 3
6294  1.291899 -0.6648757 0.7257802 1
6295  1.291899 -0.6648757 0.7257802 2
6296  1.291899 -0.6648757 0.7257802 2
6297  1.291899 -0.6648757 0.7257802 2
6298  1.291899 -0.6648757 0.7257802 3
6299  1.291899 -0.6648757 0.7257802 3
6300  1.291899 -0.6648757 0.7257802 1
6301  1.291899 -0.6648757 0.7257802 2
6302  1.291899 -0.6648757 0.7257802 2
6303  1.291899 -0.6648757 0.7257802 1
6304  1.291899 -0.6648757 0.7257802 2
6305  1.291899 -0.6648757 0.7257802 3
6306  1.291899 -0.6648757 0.7257802 1
6307  1.291899 -0.6648757 0.7257802 2
6308  1.291899 -0.6648757 0.7257802 1
6309  1.291899 -0.6648757 0.7257802 3
6310  1.291899 -0.6648757 0.7257802 3
6311  1.291899 -0.6648757 0.7257802 1
6312  1.291899 -0.6648757 0.7257802 2
6313  1.291899 -0.6648757 0.7257802 2
6314  1.291899 -0.6648757 0.7257802 1
6315  1.291899 -0.6648757 0.7257802 1
6316  1.291899 -0.6648757 0.7257802 3
6317  1.291899 -0.6648757 0.7257802 3
6318  1.291899 -0.6648757 0.7257802 3
6319  1.291899 -0.6648757 0.7257802 3
6320  1.291899 -0.6648757 0.7257802 3
6321  1.291899 -0.6648757 0.7257802 3
6322  1.291899 -0.6648757 0.7257802 1
6323  1.291899 -0.6648757 0.7257802 3
6324  1.291899 -0.6648757 0.7257802 3
6325  1.291899 -0.6648757 0.7257802 2
6326  1.291899 -0.6648757 0.7257802 1
6327  1.291899 -0.6648757 0.7257802 2
6328  1.291899 -0.6648757 0.7257802 1
6329  1.291899 -0.6648757 0.7257802 1
6330  1.291899 -0.6648757 0.7257802 2
6331  1.291899 -0.6648757 0.7257802 3
6332  1.291899 -0.6648757 0.7257802 3
6333  1.291899 -0.6648757 0.7257802 3
6334  1.291899 -0.6648757 0.7257802 3
6335  1.291899 -0.6648757 0.7257802 1
6336  1.291899 -0.6648757 0.7257802 3
6337  1.291899 -0.6648757 0.7257802 3
6338  1.291899 -0.6648757 0.7257802 2
6339  1.291899 -0.6648757 0.7257802 2
6340  1.291899 -0.6648757 0.7257802 3
6341  1.291899 -0.6648757 0.7257802 2
6342  1.291899 -0.6648757 0.7257802 3
6343  1.291899 -0.6648757 0.7257802 1
6344  1.291899 -0.6648757 0.7257802 1
6345  1.291899 -0.6648757 0.7257802 2
6346  1.291899 -0.6648757 0.7257802 2
6347  1.291899 -0.6648757 0.7257802 1
6348  1.291899 -0.6648757 0.7257802 1
6349  1.291899 -0.6648757 0.7257802 1
6350  1.291899 -0.6648757 0.7257802 1
6351  1.291899 -0.6648757 0.7257802 1
6352  1.291899 -0.6648757 0.7257802 1
6353  1.291899 -0.6648757 0.7257802 1
6354  1.291899 -0.6648757 0.7257802 3
6355  1.291899 -0.6648757 0.7257802 1
6356  1.291899 -0.6648757 0.7257802 1
6357  1.291899 -0.6648757 0.7257802 3
6358  1.291899 -0.6648757 0.7257802 1
6359  1.291899 -0.6648757 0.7257802 1
6360  1.291899 -0.6648757 0.7257802 1
6361  1.291899 -0.6648757 0.7257802 3
6362  1.291899 -0.6648757 0.7257802 3
6363  1.291899 -0.6648757 0.7257802 3
6364  1.291899 -0.6648757 0.7257802 1
6365  1.291899 -0.6648757 0.7257802 2
6366  1.291899 -0.6648757 0.7257802 2
6367  1.291899 -0.6648757 0.7257802 1
6368  1.291899 -0.6648757 0.7257802 3
6369  1.291899 -0.6648757 0.7257802 2
6370  1.291899 -0.6648757 0.7257802 1
6371  1.291899 -0.6648757 0.7257802 3
6372  1.291899 -0.6648757 0.7257802 3
6373  1.291899 -0.6648757 0.7257802 3
6374  1.291899 -0.6648757 0.7257802 1
6375  1.291899 -0.6648757 0.7257802 3
6376  1.291899 -0.6648757 0.7257802 1
6377  1.291899 -0.6648757 0.7257802 1
6378  1.291899 -0.6648757 0.7257802 2
6379  1.291899 -0.6648757 0.7257802 3
6380  1.291899 -0.6648757 0.7257802 2
6381  1.291899 -0.6648757 0.7257802 1
6382  1.291899 -0.6648757 0.7257802 3
6383  1.291899 -0.6648757 0.7257802 2
6384  1.291899 -0.6648757 0.7257802 3
6385  1.291899 -0.6648757 0.7257802 3
6386  1.291899 -0.6648757 0.7257802 1
6387  1.291899 -0.6648757 0.7257802 2
6388  1.291899 -0.6648757 0.7257802 2
6389  1.291899 -0.6648757 0.7257802 1
6390  1.291899 -0.6648757 0.7257802 1
6391  1.291899 -0.6648757 0.7257802 3
6392  1.291899 -0.6648757 0.7257802 3
6393  1.291899 -0.6648757 0.7257802 1
6394  1.291899 -0.6648757 0.7257802 2
6395  1.291899 -0.6648757 0.7257802 3
6396  1.291899 -0.6648757 0.7257802 3
6397  1.291899 -0.6648757 0.7257802 3
6398  1.291899 -0.6648757 0.7257802 1
6399  1.291899 -0.6648757 0.7257802 2
6400  1.291899 -0.6648757 0.7257802 1
6401  1.291899 -0.6648757 0.7257802 1
6402  1.291899 -0.6648757 0.7257802 1
6403  1.291899 -0.6648757 0.7257802 1
6404  1.291899 -0.6648757 0.7257802 3
6405  1.291899 -0.6648757 0.7257802 2
6406  1.291899 -0.6648757 0.7257802 2
6407  1.291899 -0.6648757 0.7257802 2
6408  1.291899 -0.6648757 0.7257802 2
6409  1.291899 -0.6648757 0.7257802 2
6410  1.291899 -0.6648757 0.7257802 1
6411  1.291899 -0.6648757 0.7257802 1
6412  1.291899 -0.6648757 0.7257802 1
6413  1.291899 -0.6648757 0.7257802 2
6414  1.291899 -0.6648757 0.7257802 3
6415  1.291899 -0.6648757 0.7257802 3
6416  1.291899 -0.6648757 0.7257802 1
6417  1.291899 -0.6648757 0.7257802 3
6418  1.291899 -0.6648757 0.7257802 3
6419  1.291899 -0.6648757 0.7257802 2
6420  1.291899 -0.6648757 0.7257802 1
6421  1.291899 -0.6648757 0.7257802 1
6422  1.291899 -0.6648757 0.7257802 1
6423  1.291899 -0.6648757 0.7257802 1
6424  1.291899 -0.6648757 0.7257802 2
6425  1.291899 -0.6648757 0.7257802 3
6426  1.291899 -0.6648757 0.7257802 1
6427  1.291899 -0.6648757 0.7257802 3
6428  1.291899 -0.6648757 0.7257802 1
6429  1.291899 -0.6648757 0.7257802 2
6430  1.291899 -0.6648757 0.7257802 1
6431  1.291899 -0.6648757 0.7257802 2
6432  1.291899 -0.6648757 0.7257802 3
6433  1.291899 -0.6648757 0.7257802 1
6434  1.285433 -0.6488229 0.7290651 2
6435  1.285433 -0.6488229 0.7290651 2
6436  1.285433 -0.6488229 0.7290651 2
6437  1.285433 -0.6488229 0.7290651 1
6438  1.285433 -0.6488229 0.7290651 2
6439  1.285433 -0.6488229 0.7290651 1
6440  1.285433 -0.6488229 0.7290651 2
6441  1.285433 -0.6488229 0.7290651 1
6442  1.285433 -0.6488229 0.7290651 2
6443  1.285433 -0.6488229 0.7290651 1
6444  1.285433 -0.6488229 0.7290651 1
6445  1.285433 -0.6488229 0.7290651 3
6446  1.285433 -0.6488229 0.7290651 1
6447  1.285433 -0.6488229 0.7290651 2
6448  1.285433 -0.6488229 0.7290651 3
6449  1.285433 -0.6488229 0.7290651 1
6450  1.285433 -0.6488229 0.7290651 2
6451  1.285433 -0.6488229 0.7290651 3
6452  1.285433 -0.6488229 0.7290651 1
6453  1.285433 -0.6488229 0.7290651 3
6454  1.285433 -0.6488229 0.7290651 3
6455  1.285433 -0.6488229 0.7290651 2
6456  1.285433 -0.6488229 0.7290651 1
6457  1.285433 -0.6488229 0.7290651 2
6458  1.285433 -0.6488229 0.7290651 3
6459  1.285433 -0.6488229 0.7290651 2
6460  1.285433 -0.6488229 0.7290651 3
6461  1.285433 -0.6488229 0.7290651 3
6462  1.285433 -0.6488229 0.7290651 3
6463  1.285433 -0.6488229 0.7290651 2
6464  1.285433 -0.6488229 0.7290651 3
6465  1.285433 -0.6488229 0.7290651 3
6466  1.285433 -0.6488229 0.7290651 3
6467  1.285433 -0.6488229 0.7290651 2
6468  1.285433 -0.6488229 0.7290651 3
6469  1.285433 -0.6488229 0.7290651 2
6470  1.285433 -0.6488229 0.7290651 2
6471  1.285433 -0.6488229 0.7290651 2
6472  1.285433 -0.6488229 0.7290651 2
6473  1.285433 -0.6488229 0.7290651 1
6474  1.285433 -0.6488229 0.7290651 1
6475  1.285433 -0.6488229 0.7290651 3
6476  1.285433 -0.6488229 0.7290651 2
6477  1.285433 -0.6488229 0.7290651 3
6478  1.285433 -0.6488229 0.7290651 3
6479  1.285433 -0.6488229 0.7290651 3
6480  1.285433 -0.6488229 0.7290651 3
6481  1.285433 -0.6488229 0.7290651 2
6482  1.285433 -0.6488229 0.7290651 3
6483  1.285433 -0.6488229 0.7290651 1
6484  1.285433 -0.6488229 0.7290651 2
6485  1.285433 -0.6488229 0.7290651 2
6486  1.285433 -0.6488229 0.7290651 2
6487  1.285433 -0.6488229 0.7290651 2
6488  1.285433 -0.6488229 0.7290651 1
6489  1.285433 -0.6488229 0.7290651 1
6490  1.285433 -0.6488229 0.7290651 2
6491  1.285433 -0.6488229 0.7290651 2
6492  1.285433 -0.6488229 0.7290651 1
6493  1.285433 -0.6488229 0.7290651 3
6494  1.285433 -0.6488229 0.7290651 2
6495  1.285433 -0.6488229 0.7290651 2
6496  1.285433 -0.6488229 0.7290651 2
6497  1.285433 -0.6488229 0.7290651 2
6498  1.285433 -0.6488229 0.7290651 1
6499  1.285433 -0.6488229 0.7290651 1
6500  1.285433 -0.6488229 0.7290651 3
6501  1.285433 -0.6488229 0.7290651 3
6502  1.285433 -0.6488229 0.7290651 2
6503  1.285433 -0.6488229 0.7290651 1
6504  1.285433 -0.6488229 0.7290651 1
6505  1.285433 -0.6488229 0.7290651 2
6506  1.285433 -0.6488229 0.7290651 2
6507  1.285433 -0.6488229 0.7290651 1
6508  1.285433 -0.6488229 0.7290651 3
6509  1.285433 -0.6488229 0.7290651 1
6510  1.285433 -0.6488229 0.7290651 3
6511  1.285433 -0.6488229 0.7290651 2
6512  1.285433 -0.6488229 0.7290651 2
6513  1.285433 -0.6488229 0.7290651 2
6514  1.285433 -0.6488229 0.7290651 2
6515  1.285433 -0.6488229 0.7290651 1
6516  1.285433 -0.6488229 0.7290651 1
6517  1.285433 -0.6488229 0.7290651 2
6518  1.285433 -0.6488229 0.7290651 3
6519  1.285433 -0.6488229 0.7290651 3
6520  1.285433 -0.6488229 0.7290651 3
6521  1.285433 -0.6488229 0.7290651 1
6522  1.285433 -0.6488229 0.7290651 3
6523  1.285433 -0.6488229 0.7290651 3
6524  1.285433 -0.6488229 0.7290651 1
6525  1.285433 -0.6488229 0.7290651 3
6526  1.285433 -0.6488229 0.7290651 1
6527  1.285433 -0.6488229 0.7290651 1
6528  1.285433 -0.6488229 0.7290651 1
6529  1.285433 -0.6488229 0.7290651 2
6530  1.285433 -0.6488229 0.7290651 1
6531  1.285433 -0.6488229 0.7290651 1
6532  1.285433 -0.6488229 0.7290651 3
6533  1.285433 -0.6488229 0.7290651 3
6534  1.285433 -0.6488229 0.7290651 3
6535  1.285433 -0.6488229 0.7290651 2
6536  1.285433 -0.6488229 0.7290651 3
6537  1.285433 -0.6488229 0.7290651 3
6538  1.285433 -0.6488229 0.7290651 2
6539  1.285433 -0.6488229 0.7290651 3
6540  1.285433 -0.6488229 0.7290651 1
6541  1.285433 -0.6488229 0.7290651 2
6542  1.285433 -0.6488229 0.7290651 2
6543  1.285433 -0.6488229 0.7290651 1
6544  1.285433 -0.6488229 0.7290651 3
6545  1.285433 -0.6488229 0.7290651 2
6546  1.285433 -0.6488229 0.7290651 1
6547  1.285433 -0.6488229 0.7290651 1
6548  1.285433 -0.6488229 0.7290651 1
6549  1.285433 -0.6488229 0.7290651 3
6550  1.285433 -0.6488229 0.7290651 3
6551  1.285433 -0.6488229 0.7290651 2
6552  1.285433 -0.6488229 0.7290651 1
6553  1.285433 -0.6488229 0.7290651 3
6554  1.285433 -0.6488229 0.7290651 3
6555  1.285433 -0.6488229 0.7290651 3
6556  1.285433 -0.6488229 0.7290651 2
6557  1.285433 -0.6488229 0.7290651 1
6558  1.285433 -0.6488229 0.7290651 1
6559  1.285433 -0.6488229 0.7290651 1
6560  1.285433 -0.6488229 0.7290651 1
6561  1.285433 -0.6488229 0.7290651 1
6562  1.285433 -0.6488229 0.7290651 1
6563  1.285433 -0.6488229 0.7290651 3
6564  1.285433 -0.6488229 0.7290651 3
6565  1.285433 -0.6488229 0.7290651 3
6566  1.285433 -0.6488229 0.7290651 2
6567  1.285433 -0.6488229 0.7290651 2
6568  1.285433 -0.6488229 0.7290651 1
6569  1.285433 -0.6488229 0.7290651 2
6570  1.285433 -0.6488229 0.7290651 3
6571  1.285433 -0.6488229 0.7290651 3
6572  1.285433 -0.6488229 0.7290651 1
6573  1.285433 -0.6488229 0.7290651 3
6574  1.285433 -0.6488229 0.7290651 3
6575  1.285433 -0.6488229 0.7290651 1
6576  1.285433 -0.6488229 0.7290651 3
6577  1.285433 -0.6488229 0.7290651 3
6578  1.285433 -0.6488229 0.7290651 3
6579  1.285433 -0.6488229 0.7290651 2
6580  1.285433 -0.6488229 0.7290651 2
6581  1.285433 -0.6488229 0.7290651 1
6582  1.285433 -0.6488229 0.7290651 3
6583  1.285433 -0.6488229 0.7290651 3
6584  1.285433 -0.6488229 0.7290651 1
6585  1.285433 -0.6488229 0.7290651 1
6586  1.285433 -0.6488229 0.7290651 3
6587  1.285433 -0.6488229 0.7290651 3
6588  1.285433 -0.6488229 0.7290651 2
6589  1.285433 -0.6488229 0.7290651 1
6590  1.285433 -0.6488229 0.7290651 2
6591  1.285433 -0.6488229 0.7290651 3
6592  1.285433 -0.6488229 0.7290651 1
6593  1.285433 -0.6488229 0.7290651 1
6594  1.285433 -0.6488229 0.7290651 1
6595  1.285433 -0.6488229 0.7290651 2
6596  1.285433 -0.6488229 0.7290651 2
6597  1.285433 -0.6488229 0.7290651 3
6598  1.285433 -0.6488229 0.7290651 3
6599  1.285433 -0.6488229 0.7290651 2
6600  1.285433 -0.6488229 0.7290651 1
6601  1.285433 -0.6488229 0.7290651 2
6602  1.285433 -0.6488229 0.7290651 2
6603  1.285433 -0.6488229 0.7290651 2
6604  1.285433 -0.6488229 0.7290651 1
6605  1.285433 -0.6488229 0.7290651 2
6606  1.285433 -0.6488229 0.7290651 1
6607  1.285433 -0.6488229 0.7290651 2
6608  1.285433 -0.6488229 0.7290651 1
6609  1.285433 -0.6488229 0.7290651 2
6610  1.285433 -0.6488229 0.7290651 1
6611  1.285433 -0.6488229 0.7290651 3
6612  1.285433 -0.6488229 0.7290651 1
6613  1.285433 -0.6488229 0.7290651 1
6614  1.285433 -0.6488229 0.7290651 3
6615  1.285433 -0.6488229 0.7290651 1
6616  1.285433 -0.6488229 0.7290651 1
6617  1.285433 -0.6488229 0.7290651 3
6618  1.285433 -0.6488229 0.7290651 2
6619  1.285433 -0.6488229 0.7290651 2
6620  1.285433 -0.6488229 0.7290651 3
6621  1.285433 -0.6488229 0.7290651 1
6622  1.285433 -0.6488229 0.7290651 2
6623  1.285433 -0.6488229 0.7290651 1
6624  1.285433 -0.6488229 0.7290651 3
6625  1.285433 -0.6488229 0.7290651 2
6626  1.285433 -0.6488229 0.7290651 1
6627  1.285433 -0.6488229 0.7290651 2
6628  1.285433 -0.6488229 0.7290651 3
6629  1.285433 -0.6488229 0.7290651 1
6630  1.285433 -0.6488229 0.7290651 2
6631  1.285433 -0.6488229 0.7290651 1
6632  1.285433 -0.6488229 0.7290651 2
6633  1.285433 -0.6488229 0.7290651 3
6634  1.285433 -0.6488229 0.7290651 3
6635  1.285433 -0.6488229 0.7290651 2
6636  1.285433 -0.6488229 0.7290651 1
6637  1.285433 -0.6488229 0.7290651 2
6638  1.285433 -0.6488229 0.7290651 3
6639  1.285433 -0.6488229 0.7290651 1
6640  1.285433 -0.6488229 0.7290651 2
6641  1.285433 -0.6488229 0.7290651 2
6642  1.285433 -0.6488229 0.7290651 2
6643  1.285433 -0.6488229 0.7290651 3
6644  1.285433 -0.6488229 0.7290651 1
6645  1.285433 -0.6488229 0.7290651 1
6646  1.285433 -0.6488229 0.7290651 1
6647  1.285433 -0.6488229 0.7290651 1
6648  1.285433 -0.6488229 0.7290651 1
6649  1.285433 -0.6488229 0.7290651 3
6650  1.285433 -0.6488229 0.7290651 2
6651  1.285433 -0.6488229 0.7290651 1
6652  1.285433 -0.6488229 0.7290651 3
6653  1.285433 -0.6488229 0.7290651 2
6654  1.285433 -0.6488229 0.7290651 1
6655  1.285433 -0.6488229 0.7290651 3
6656  1.285433 -0.6488229 0.7290651 1
6657  1.285433 -0.6488229 0.7290651 3
6658  1.285433 -0.6488229 0.7290651 3
6659  1.285433 -0.6488229 0.7290651 1
6660  1.285433 -0.6488229 0.7290651 2
6661  1.285433 -0.6488229 0.7290651 2
6662  1.285433 -0.6488229 0.7290651 2
6663  1.285433 -0.6488229 0.7290651 2
6664  1.285433 -0.6488229 0.7290651 2
6665  1.285433 -0.6488229 0.7290651 3
6666  1.285433 -0.6488229 0.7290651 3
6667  1.285433 -0.6488229 0.7290651 1
6668  1.285433 -0.6488229 0.7290651 3
6669  1.285433 -0.6488229 0.7290651 3
6670  1.285433 -0.6488229 0.7290651 2
6671  1.285433 -0.6488229 0.7290651 2
6672  1.285433 -0.6488229 0.7290651 3
6673  1.285433 -0.6488229 0.7290651 1
6674  1.285433 -0.6488229 0.7290651 2
6675  1.285433 -0.6488229 0.7290651 3
6676  1.285433 -0.6488229 0.7290651 3
6677  1.285433 -0.6488229 0.7290651 1
6678  1.285433 -0.6488229 0.7290651 2
6679  1.285433 -0.6488229 0.7290651 1
6680  1.285433 -0.6488229 0.7290651 3
6681  1.285433 -0.6488229 0.7290651 3
6682  1.285433 -0.6488229 0.7290651 1
6683  1.285433 -0.6488229 0.7290651 1
6684  1.285433 -0.6488229 0.7290651 3
6685  1.285433 -0.6488229 0.7290651 1
6686  1.285433 -0.6488229 0.7290651 3
6687  1.285433 -0.6488229 0.7290651 1
6688  1.285433 -0.6488229 0.7290651 3
6689  1.285433 -0.6488229 0.7290651 1
6690  1.285433 -0.6488229 0.7290651 1
6691  1.285433 -0.6488229 0.7290651 2
6692  1.285433 -0.6488229 0.7290651 1
6693  1.285433 -0.6488229 0.7290651 3
6694  1.285433 -0.6488229 0.7290651 3
6695  1.285433 -0.6488229 0.7290651 1
6696  1.285433 -0.6488229 0.7290651 2
6697  1.285433 -0.6488229 0.7290651 2
6698  1.285433 -0.6488229 0.7290651 3
6699  1.285433 -0.6488229 0.7290651 2
6700  1.285433 -0.6488229 0.7290651 3
6701  1.285433 -0.6488229 0.7290651 1
6702  1.285433 -0.6488229 0.7290651 3
6703  1.285433 -0.6488229 0.7290651 2
6704  1.285433 -0.6488229 0.7290651 3
6705  1.285433 -0.6488229 0.7290651 1
6706  1.285433 -0.6488229 0.7290651 1
6707  1.285433 -0.6488229 0.7290651 3
6708  1.285433 -0.6488229 0.7290651 2
6709  1.285433 -0.6488229 0.7290651 2
6710  1.285433 -0.6488229 0.7290651 1
6711  1.285433 -0.6488229 0.7290651 1
6712  1.285433 -0.6488229 0.7290651 2
6713  1.285433 -0.6488229 0.7290651 1
6714  1.285433 -0.6488229 0.7290651 1
6715  1.285433 -0.6488229 0.7290651 3
6716  1.285433 -0.6488229 0.7290651 2
6717  1.285433 -0.6488229 0.7290651 2
6718  1.285433 -0.6488229 0.7290651 1
6719  1.285433 -0.6488229 0.7290651 3
6720  1.285433 -0.6488229 0.7290651 1
6721  1.285433 -0.6488229 0.7290651 3
6722  1.285433 -0.6488229 0.7290651 2
6723  1.285433 -0.6488229 0.7290651 3
6724  1.285433 -0.6488229 0.7290651 3
6725  1.285433 -0.6488229 0.7290651 1
6726  1.285433 -0.6488229 0.7290651 1
6727  1.285433 -0.6488229 0.7290651 1
6728  1.285433 -0.6488229 0.7290651 2
6729  1.285433 -0.6488229 0.7290651 2
6730  1.285433 -0.6488229 0.7290651 1
6731  1.285433 -0.6488229 0.7290651 1
6732  1.285433 -0.6488229 0.7290651 2
6733  1.285433 -0.6488229 0.7290651 1
6734  1.285433 -0.6488229 0.7290651 1
6735  1.285433 -0.6488229 0.7290651 1
6736  1.285433 -0.6488229 0.7290651 3
6737  1.285433 -0.6488229 0.7290651 1
6738  1.285433 -0.6488229 0.7290651 1
6739  1.285433 -0.6488229 0.7290651 3
6740  1.285433 -0.6488229 0.7290651 3
6741  1.285433 -0.6488229 0.7290651 1
6742  1.285433 -0.6488229 0.7290651 2
6743  1.285433 -0.6488229 0.7290651 3
6744  1.285433 -0.6488229 0.7290651 1
6745  1.285433 -0.6488229 0.7290651 1
6746  1.285433 -0.6488229 0.7290651 2
6747  1.285433 -0.6488229 0.7290651 2
6748  1.285433 -0.6488229 0.7290651 1
6749  1.285433 -0.6488229 0.7290651 2
6750  1.285433 -0.6488229 0.7290651 3
6751  1.285433 -0.6488229 0.7290651 3
6752  1.285433 -0.6488229 0.7290651 1
6753  1.285433 -0.6488229 0.7290651 3
6754  1.285433 -0.6488229 0.7290651 2
6755  1.285433 -0.6488229 0.7290651 3
6756  1.285433 -0.6488229 0.7290651 2
6757  1.285433 -0.6488229 0.7290651 3
6758  1.285433 -0.6488229 0.7290651 2
6759  1.285433 -0.6488229 0.7290651 2
6760  1.285433 -0.6488229 0.7290651 1
6761  1.285433 -0.6488229 0.7290651 3
6762  1.285433 -0.6488229 0.7290651 1
6763  1.285433 -0.6488229 0.7290651 2
6764  1.285433 -0.6488229 0.7290651 2
6765  1.285433 -0.6488229 0.7290651 2
6766  1.285433 -0.6488229 0.7290651 1
6767  1.285433 -0.6488229 0.7290651 1
6768  1.285433 -0.6488229 0.7290651 3
6769  1.285433 -0.6488229 0.7290651 3
6770  1.285433 -0.6488229 0.7290651 1
6771  1.285433 -0.6488229 0.7290651 2
6772  1.285433 -0.6488229 0.7290651 2
6773  1.285433 -0.6488229 0.7290651 1
6774  1.285433 -0.6488229 0.7290651 1
6775  1.285433 -0.6488229 0.7290651 3
6776  1.285433 -0.6488229 0.7290651 3
6777  1.285433 -0.6488229 0.7290651 1
6778  1.285433 -0.6488229 0.7290651 3
6779  1.285433 -0.6488229 0.7290651 1
6780  1.285433 -0.6488229 0.7290651 1
6781  1.285433 -0.6488229 0.7290651 2
6782  1.285433 -0.6488229 0.7290651 3
6783  1.285433 -0.6488229 0.7290651 2
6784  1.285433 -0.6488229 0.7290651 1
6785  1.285433 -0.6488229 0.7290651 1
6786  1.285433 -0.6488229 0.7290651 1
6787  1.285433 -0.6488229 0.7290651 1
6788  1.285433 -0.6488229 0.7290651 1
6789  1.285433 -0.6488229 0.7290651 3
6790  1.285433 -0.6488229 0.7290651 3
6791  1.285433 -0.6488229 0.7290651 1
6792  1.285433 -0.6488229 0.7290651 1
6793  1.285433 -0.6488229 0.7290651 2
6794  1.285433 -0.6488229 0.7290651 1
6795  1.285433 -0.6488229 0.7290651 1
6796  1.285433 -0.6488229 0.7290651 3
6797  1.285433 -0.6488229 0.7290651 2
6798  1.285433 -0.6488229 0.7290651 3
6799  1.285433 -0.6488229 0.7290651 2
6800  1.285433 -0.6488229 0.7290651 3
6801  1.285433 -0.6488229 0.7290651 2
6802  1.285433 -0.6488229 0.7290651 3
6803  1.285433 -0.6488229 0.7290651 1
6804  1.285433 -0.6488229 0.7290651 1
6805  1.285433 -0.6488229 0.7290651 1
6806  1.285433 -0.6488229 0.7290651 3
6807  1.285433 -0.6488229 0.7290651 2
6808  1.285433 -0.6488229 0.7290651 2
6809  1.285433 -0.6488229 0.7290651 1
6810  1.285433 -0.6488229 0.7290651 1
6811  1.285433 -0.6488229 0.7290651 3
6812  1.285433 -0.6488229 0.7290651 2
6813  1.285433 -0.6488229 0.7290651 1
6814  1.285433 -0.6488229 0.7290651 1
6815  1.285433 -0.6488229 0.7290651 3
6816  1.285433 -0.6488229 0.7290651 3
6817  1.285433 -0.6488229 0.7290651 2
6818  1.285433 -0.6488229 0.7290651 3
6819  1.285433 -0.6488229 0.7290651 1
6820  1.285433 -0.6488229 0.7290651 2
6821  1.285433 -0.6488229 0.7290651 3
6822  1.285433 -0.6488229 0.7290651 1
6823  1.285433 -0.6488229 0.7290651 1
6824  1.285433 -0.6488229 0.7290651 2
6825  1.285433 -0.6488229 0.7290651 1
6826  1.285433 -0.6488229 0.7290651 2
6827  1.285433 -0.6488229 0.7290651 1
6828  1.285433 -0.6488229 0.7290651 3
6829  1.285433 -0.6488229 0.7290651 2
6830  1.285433 -0.6488229 0.7290651 3
6831  1.285433 -0.6488229 0.7290651 3
6832  1.285433 -0.6488229 0.7290651 3
6833  1.285433 -0.6488229 0.7290651 3
6834  1.285433 -0.6488229 0.7290651 2
6835  1.285433 -0.6488229 0.7290651 3
6836  1.285433 -0.6488229 0.7290651 3
6837  1.285433 -0.6488229 0.7290651 1
6838  1.285433 -0.6488229 0.7290651 1
6839  1.285433 -0.6488229 0.7290651 2
6840  1.285433 -0.6488229 0.7290651 1
6841  1.285433 -0.6488229 0.7290651 3
6842  1.285433 -0.6488229 0.7290651 3
6843  1.285433 -0.6488229 0.7290651 3
6844  1.285433 -0.6488229 0.7290651 2
6845  1.285433 -0.6488229 0.7290651 1
6846  1.285433 -0.6488229 0.7290651 3
6847  1.285433 -0.6488229 0.7290651 2
6848  1.285433 -0.6488229 0.7290651 1
6849  1.285433 -0.6488229 0.7290651 3
6850  1.285433 -0.6488229 0.7290651 3
6851  1.285433 -0.6488229 0.7290651 1
6852  1.285433 -0.6488229 0.7290651 1
6853  1.285433 -0.6488229 0.7290651 3
6854  1.285433 -0.6488229 0.7290651 3
6855  1.285433 -0.6488229 0.7290651 1
6856  1.285433 -0.6488229 0.7290651 3
6857  1.285433 -0.6488229 0.7290651 3
6858  1.285433 -0.6488229 0.7290651 1
6859  1.285433 -0.6488229 0.7290651 3
6860  1.285433 -0.6488229 0.7290651 3
6861  1.285433 -0.6488229 0.7290651 1
6862  1.285433 -0.6488229 0.7290651 2
6863  1.285433 -0.6488229 0.7290651 1
6864  1.285433 -0.6488229 0.7290651 3
6865  1.285433 -0.6488229 0.7290651 2
6866  1.285433 -0.6488229 0.7290651 2
6867  1.285433 -0.6488229 0.7290651 3
6868  1.285433 -0.6488229 0.7290651 2
6869  1.285433 -0.6488229 0.7290651 1
6870  1.285433 -0.6488229 0.7290651 3
6871  1.285433 -0.6488229 0.7290651 3
6872  1.285433 -0.6488229 0.7290651 1
6873  1.285433 -0.6488229 0.7290651 3
6874  1.285433 -0.6488229 0.7290651 1
6875  1.285433 -0.6488229 0.7290651 2
6876  1.285433 -0.6488229 0.7290651 1
6877  1.285433 -0.6488229 0.7290651 3
6878  1.285433 -0.6488229 0.7290651 3
6879  1.285433 -0.6488229 0.7290651 1
6880  1.285433 -0.6488229 0.7290651 2
6881  1.285433 -0.6488229 0.7290651 2
6882  1.285433 -0.6488229 0.7290651 3
6883  1.285433 -0.6488229 0.7290651 2
6884  1.285433 -0.6488229 0.7290651 2
6885  1.285433 -0.6488229 0.7290651 2
6886  1.285433 -0.6488229 0.7290651 1
6887  1.285433 -0.6488229 0.7290651 1
6888  1.285433 -0.6488229 0.7290651 1
6889  1.285433 -0.6488229 0.7290651 1
6890  1.285433 -0.6488229 0.7290651 1
6891  1.285433 -0.6488229 0.7290651 3
6892  1.285433 -0.6488229 0.7290651 2
6893  1.285433 -0.6488229 0.7290651 3
6894  1.285433 -0.6488229 0.7290651 1
6895  1.285433 -0.6488229 0.7290651 1
6896  1.285433 -0.6488229 0.7290651 3
6897  1.285433 -0.6488229 0.7290651 3
6898  1.285433 -0.6488229 0.7290651 3
6899  1.285433 -0.6488229 0.7290651 3
6900  1.285433 -0.6488229 0.7290651 2
6901  1.285433 -0.6488229 0.7290651 1
6902  1.285433 -0.6488229 0.7290651 1
6903  1.285433 -0.6488229 0.7290651 1
6904  1.285433 -0.6488229 0.7290651 1
6905  1.285433 -0.6488229 0.7290651 1
6906  1.285433 -0.6488229 0.7290651 2
6907  1.285433 -0.6488229 0.7290651 1
6908  1.285433 -0.6488229 0.7290651 3
6909  1.285433 -0.6488229 0.7290651 3
6910  1.285433 -0.6488229 0.7290651 3
6911  1.285433 -0.6488229 0.7290651 1
6912  1.285433 -0.6488229 0.7290651 3
6913  1.285433 -0.6488229 0.7290651 3
6914  1.285433 -0.6488229 0.7290651 3
6915  1.285433 -0.6488229 0.7290651 3
6916  1.285433 -0.6488229 0.7290651 2
6917  1.285433 -0.6488229 0.7290651 2
6918  1.285433 -0.6488229 0.7290651 1
6919  1.285433 -0.6488229 0.7290651 2
6920  1.285433 -0.6488229 0.7290651 2
6921  1.285433 -0.6488229 0.7290651 2
6922  1.285433 -0.6488229 0.7290651 3
6923  1.285433 -0.6488229 0.7290651 2
6924  1.285433 -0.6488229 0.7290651 3
6925  1.285433 -0.6488229 0.7290651 3
6926  1.285433 -0.6488229 0.7290651 3
6927  1.285433 -0.6488229 0.7290651 1
6928  1.285433 -0.6488229 0.7290651 1
6929  1.285433 -0.6488229 0.7290651 2
6930  1.285433 -0.6488229 0.7290651 2
6931  1.285433 -0.6488229 0.7290651 1
6932  1.285433 -0.6488229 0.7290651 1
6933  1.285433 -0.6488229 0.7290651 1
6934  1.285433 -0.6488229 0.7290651 1
6935  1.285433 -0.6488229 0.7290651 1
6936  1.285433 -0.6488229 0.7290651 2
6937  1.285433 -0.6488229 0.7290651 3
6938  1.285433 -0.6488229 0.7290651 2
6939  1.285433 -0.6488229 0.7290651 1
6940  1.285433 -0.6488229 0.7290651 2
6941  1.285433 -0.6488229 0.7290651 3
6942  1.285433 -0.6488229 0.7290651 2
6943  1.285433 -0.6488229 0.7290651 1
6944  1.285433 -0.6488229 0.7290651 2
6945  1.285433 -0.6488229 0.7290651 3
6946  1.285433 -0.6488229 0.7290651 3
6947  1.285433 -0.6488229 0.7290651 3
6948  1.285433 -0.6488229 0.7290651 1
6949  1.285433 -0.6488229 0.7290651 3
6950  1.285433 -0.6488229 0.7290651 3
6951  1.285433 -0.6488229 0.7290651 2
6952  1.285433 -0.6488229 0.7290651 1
6953  1.285433 -0.6488229 0.7290651 1
6954  1.285433 -0.6488229 0.7290651 1
6955  1.285433 -0.6488229 0.7290651 2
6956  1.285433 -0.6488229 0.7290651 2
6957  1.285433 -0.6488229 0.7290651 2
6958  1.285433 -0.6488229 0.7290651 3
6959  1.285433 -0.6488229 0.7290651 3
6960  1.285433 -0.6488229 0.7290651 3
6961  1.285433 -0.6488229 0.7290651 1
6962  1.285433 -0.6488229 0.7290651 1
6963  1.285433 -0.6488229 0.7290651 1
6964  1.285433 -0.6488229 0.7290651 2
6965  1.285433 -0.6488229 0.7290651 1
6966  1.285433 -0.6488229 0.7290651 3
6967  1.285433 -0.6488229 0.7290651 1
6968  1.285433 -0.6488229 0.7290651 2
6969  1.285433 -0.6488229 0.7290651 3
6970  1.285433 -0.6488229 0.7290651 2
6971  1.285433 -0.6488229 0.7290651 1
6972  1.285433 -0.6488229 0.7290651 1
6973  1.285433 -0.6488229 0.7290651 2
6974  1.285433 -0.6488229 0.7290651 1
6975  1.285433 -0.6488229 0.7290651 3
6976  1.285433 -0.6488229 0.7290651 2
6977  1.285433 -0.6488229 0.7290651 3
6978  1.285433 -0.6488229 0.7290651 1
6979  1.285433 -0.6488229 0.7290651 2
6980  1.285433 -0.6488229 0.7290651 3
6981  1.285433 -0.6488229 0.7290651 3
6982  1.285433 -0.6488229 0.7290651 2
6983  1.285433 -0.6488229 0.7290651 3
6984  1.285433 -0.6488229 0.7290651 3
6985  1.285433 -0.6488229 0.7290651 1
6986  1.285433 -0.6488229 0.7290651 2
6987  1.285433 -0.6488229 0.7290651 1
6988  1.285433 -0.6488229 0.7290651 3
6989  1.285433 -0.6488229 0.7290651 1
6990  1.285433 -0.6488229 0.7290651 1
6991  1.285433 -0.6488229 0.7290651 2
6992  1.285433 -0.6488229 0.7290651 1
6993  1.285433 -0.6488229 0.7290651 1
6994  1.285433 -0.6488229 0.7290651 1
6995  1.285433 -0.6488229 0.7290651 1
6996  1.285433 -0.6488229 0.7290651 1
6997  1.285433 -0.6488229 0.7290651 1
6998  1.285433 -0.6488229 0.7290651 3
6999  1.285433 -0.6488229 0.7290651 1
7000  1.285433 -0.6488229 0.7290651 1
7001  1.285433 -0.6488229 0.7290651 2
7002  1.285433 -0.6488229 0.7290651 1
7003  1.285433 -0.6488229 0.7290651 3
7004  1.285433 -0.6488229 0.7290651 2
7005  1.285433 -0.6488229 0.7290651 2
7006  1.285433 -0.6488229 0.7290651 3
7007  1.285433 -0.6488229 0.7290651 3
7008  1.285433 -0.6488229 0.7290651 3
7009  1.285433 -0.6488229 0.7290651 1
7010  1.285433 -0.6488229 0.7290651 2
7011  1.285433 -0.6488229 0.7290651 2
7012  1.285433 -0.6488229 0.7290651 3
7013  1.285433 -0.6488229 0.7290651 3
7014  1.285433 -0.6488229 0.7290651 3
7015  1.285433 -0.6488229 0.7290651 2
7016  1.285433 -0.6488229 0.7290651 3
7017  1.285433 -0.6488229 0.7290651 1
7018  1.285433 -0.6488229 0.7290651 2
7019  1.285433 -0.6488229 0.7290651 2
7020  1.285433 -0.6488229 0.7290651 3
7021  1.285433 -0.6488229 0.7290651 2
7022  1.285433 -0.6488229 0.7290651 1
7023  1.285433 -0.6488229 0.7290651 3
7024  1.285433 -0.6488229 0.7290651 2
7025  1.285433 -0.6488229 0.7290651 3
7026  1.285433 -0.6488229 0.7290651 2
7027  1.285433 -0.6488229 0.7290651 3
7028  1.285433 -0.6488229 0.7290651 3
7029  1.285433 -0.6488229 0.7290651 1
7030  1.285433 -0.6488229 0.7290651 1
7031  1.285433 -0.6488229 0.7290651 1
7032  1.285433 -0.6488229 0.7290651 1
7033  1.285433 -0.6488229 0.7290651 3
7034  1.285433 -0.6488229 0.7290651 1
7035  1.285433 -0.6488229 0.7290651 3
7036  1.285433 -0.6488229 0.7290651 3
7037  1.285433 -0.6488229 0.7290651 2
7038  1.285433 -0.6488229 0.7290651 1
7039  1.285433 -0.6488229 0.7290651 3
7040  1.285433 -0.6488229 0.7290651 2
7041  1.285433 -0.6488229 0.7290651 2
7042  1.285433 -0.6488229 0.7290651 3
7043  1.285433 -0.6488229 0.7290651 3
7044  1.285433 -0.6488229 0.7290651 1
7045  1.285433 -0.6488229 0.7290651 3
7046  1.285433 -0.6488229 0.7290651 3
7047  1.285433 -0.6488229 0.7290651 3
7048  1.285433 -0.6488229 0.7290651 3
7049  1.285433 -0.6488229 0.7290651 1
7050  1.285433 -0.6488229 0.7290651 2
7051  1.285433 -0.6488229 0.7290651 2
7052  1.285433 -0.6488229 0.7290651 1
7053  1.285433 -0.6488229 0.7290651 1
7054  1.285433 -0.6488229 0.7290651 3
7055  1.285433 -0.6488229 0.7290651 1
7056  1.285433 -0.6488229 0.7290651 2
7057  1.285433 -0.6488229 0.7290651 1
7058  1.285433 -0.6488229 0.7290651 1
7059  1.285433 -0.6488229 0.7290651 3
7060  1.285433 -0.6488229 0.7290651 2
7061  1.285433 -0.6488229 0.7290651 3
7062  1.285433 -0.6488229 0.7290651 2
7063  1.285433 -0.6488229 0.7290651 2
7064  1.285433 -0.6488229 0.7290651 3
7065  1.285433 -0.6488229 0.7290651 2
7066  1.285433 -0.6488229 0.7290651 1
7067  1.285433 -0.6488229 0.7290651 1
7068  1.285433 -0.6488229 0.7290651 1
7069  1.285433 -0.6488229 0.7290651 3
7070  1.285433 -0.6488229 0.7290651 1
7071  1.285433 -0.6488229 0.7290651 3
7072  1.285433 -0.6488229 0.7290651 3
7073  1.285433 -0.6488229 0.7290651 2
7074  1.285433 -0.6488229 0.7290651 2
7075  1.285433 -0.6488229 0.7290651 2
7076  1.285433 -0.6488229 0.7290651 2
7077  1.285433 -0.6488229 0.7290651 1
7078  1.285433 -0.6488229 0.7290651 2
7079  1.285433 -0.6488229 0.7290651 1
7080  1.285433 -0.6488229 0.7290651 3
7081  1.285433 -0.6488229 0.7290651 3
7082  1.285433 -0.6488229 0.7290651 1
7083  1.285433 -0.6488229 0.7290651 2
7084  1.285433 -0.6488229 0.7290651 3
7085  1.285433 -0.6488229 0.7290651 3
7086  1.285433 -0.6488229 0.7290651 1
7087  1.285433 -0.6488229 0.7290651 1
7088  1.285433 -0.6488229 0.7290651 1
7089  1.285433 -0.6488229 0.7290651 1
7090  1.285433 -0.6488229 0.7290651 3
7091  1.285433 -0.6488229 0.7290651 2
7092  1.285433 -0.6488229 0.7290651 3
7093  1.285433 -0.6488229 0.7290651 3
7094  1.285433 -0.6488229 0.7290651 3
7095  1.285433 -0.6488229 0.7290651 1
7096  1.285433 -0.6488229 0.7290651 2
7097  1.285433 -0.6488229 0.7290651 2
7098  1.285433 -0.6488229 0.7290651 3
7099  1.285433 -0.6488229 0.7290651 1
7100  1.285433 -0.6488229 0.7290651 1
7101  1.285433 -0.6488229 0.7290651 3
7102  1.285433 -0.6488229 0.7290651 2
7103  1.285433 -0.6488229 0.7290651 1
7104  1.285433 -0.6488229 0.7290651 3
7105  1.285433 -0.6488229 0.7290651 2
7106  1.285433 -0.6488229 0.7290651 2
7107  1.285433 -0.6488229 0.7290651 2
7108  1.285433 -0.6488229 0.7290651 3
7109  1.285433 -0.6488229 0.7290651 1
7110  1.285433 -0.6488229 0.7290651 1
7111  1.285433 -0.6488229 0.7290651 1
7112  1.285433 -0.6488229 0.7290651 3
7113  1.285433 -0.6488229 0.7290651 1
7114  1.285433 -0.6488229 0.7290651 2
7115  1.285433 -0.6488229 0.7290651 2
7116  1.285433 -0.6488229 0.7290651 3
7117  1.285433 -0.6488229 0.7290651 2
7118  1.285433 -0.6488229 0.7290651 3
7119  1.285433 -0.6488229 0.7290651 3
7120  1.285433 -0.6488229 0.7290651 1
7121  1.285433 -0.6488229 0.7290651 2
7122  1.285433 -0.6488229 0.7290651 2
7123  1.285433 -0.6488229 0.7290651 3
7124  1.285433 -0.6488229 0.7290651 2
7125  1.285433 -0.6488229 0.7290651 1
7126  1.285433 -0.6488229 0.7290651 3
7127  1.285433 -0.6488229 0.7290651 1
7128  1.285433 -0.6488229 0.7290651 2
7129  1.285433 -0.6488229 0.7290651 2
7130  1.285433 -0.6488229 0.7290651 1
7131  1.285433 -0.6488229 0.7290651 3
7132  1.285433 -0.6488229 0.7290651 1
7133  1.285433 -0.6488229 0.7290651 1
7134  1.285433 -0.6488229 0.7290651 2
7135  1.285433 -0.6488229 0.7290651 1
7136  1.285433 -0.6488229 0.7290651 1
7137  1.285433 -0.6488229 0.7290651 2
7138  1.285433 -0.6488229 0.7290651 2
7139  1.285433 -0.6488229 0.7290651 2
7140  1.285433 -0.6488229 0.7290651 3
7141  1.285433 -0.6488229 0.7290651 1
7142  1.285433 -0.6488229 0.7290651 2
7143  1.285433 -0.6488229 0.7290651 1
7144  1.285433 -0.6488229 0.7290651 2
7145  1.285433 -0.6488229 0.7290651 1
7146  1.285433 -0.6488229 0.7290651 2
7147  1.285433 -0.6488229 0.7290651 3
7148  1.285433 -0.6488229 0.7290651 1
7149  1.285433 -0.6488229 0.7290651 3
7150  1.285433 -0.6488229 0.7290651 2
7151  1.285433 -0.6488229 0.7290651 3
7152  1.285433 -0.6488229 0.7290651 3
7153  1.285433 -0.6488229 0.7290651 3
7154  1.285433 -0.6488229 0.7290651 3
7155  1.285433 -0.6488229 0.7290651 3
7156  1.285433 -0.6488229 0.7290651 3
7157  1.285433 -0.6488229 0.7290651 1
7158  1.285433 -0.6488229 0.7290651 1
7159  1.285433 -0.6488229 0.7290651 3
7160  1.285433 -0.6488229 0.7290651 3
7161  1.285433 -0.6488229 0.7290651 1
7162  1.285433 -0.6488229 0.7290651 2
7163  1.285433 -0.6488229 0.7290651 2
7164  1.285433 -0.6488229 0.7290651 3
7165  1.285433 -0.6488229 0.7290651 1
7166  1.285433 -0.6488229 0.7290651 1
7167  1.285433 -0.6488229 0.7290651 3
7168  1.285433 -0.6488229 0.7290651 1
7169  1.285433 -0.6488229 0.7290651 2
7170  1.285433 -0.6488229 0.7290651 1
7171  1.285433 -0.6488229 0.7290651 2
7172  1.285433 -0.6488229 0.7290651 3
7173  1.285433 -0.6488229 0.7290651 1
7174  1.285433 -0.6488229 0.7290651 2
7175  1.285433 -0.6488229 0.7290651 2
7176  1.285433 -0.6488229 0.7290651 3
7177  1.285433 -0.6488229 0.7290651 3
7178  1.285433 -0.6488229 0.7290651 2
7179  1.285433 -0.6488229 0.7290651 3
7180  1.285433 -0.6488229 0.7290651 3
7181  1.285433 -0.6488229 0.7290651 2
7182  1.285433 -0.6488229 0.7290651 2
7183  1.285433 -0.6488229 0.7290651 2
7184  1.285433 -0.6488229 0.7290651 2
7185  1.285433 -0.6488229 0.7290651 2
7186  1.285433 -0.6488229 0.7290651 3
7187  1.285433 -0.6488229 0.7290651 3
7188  1.285433 -0.6488229 0.7290651 2
7189  1.285433 -0.6488229 0.7290651 3
7190  1.285433 -0.6488229 0.7290651 3
7191  1.285433 -0.6488229 0.7290651 2
7192  1.285433 -0.6488229 0.7290651 2
7193  1.285433 -0.6488229 0.7290651 2
7194  1.285433 -0.6488229 0.7290651 1
7195  1.285433 -0.6488229 0.7290651 3
7196  1.285433 -0.6488229 0.7290651 1
7197  1.285433 -0.6488229 0.7290651 2
7198  1.285433 -0.6488229 0.7290651 3
7199  1.285433 -0.6488229 0.7290651 3
7200  1.285433 -0.6488229 0.7290651 2
7201  1.285433 -0.6488229 0.7290651 3
7202  1.285433 -0.6488229 0.7290651 2
7203  1.285433 -0.6488229 0.7290651 1
7204  1.285433 -0.6488229 0.7290651 2
7205  1.285433 -0.6488229 0.7290651 1
7206  1.285433 -0.6488229 0.7290651 3
7207  1.285433 -0.6488229 0.7290651 3
7208  1.285433 -0.6488229 0.7290651 2
7209  1.285433 -0.6488229 0.7290651 2
7210  1.285433 -0.6488229 0.7290651 3
7211  1.285433 -0.6488229 0.7290651 3
7212  1.285433 -0.6488229 0.7290651 3
7213  1.285433 -0.6488229 0.7290651 2
7214  1.285433 -0.6488229 0.7290651 1
7215  1.285433 -0.6488229 0.7290651 3
7216  1.285433 -0.6488229 0.7290651 2
7217  1.285433 -0.6488229 0.7290651 2
7218  1.285433 -0.6488229 0.7290651 3
7219  1.285433 -0.6488229 0.7290651 3
7220  1.285433 -0.6488229 0.7290651 2
7221  1.285433 -0.6488229 0.7290651 1
7222  1.285433 -0.6488229 0.7290651 2
7223  1.285433 -0.6488229 0.7290651 3
7224  1.285433 -0.6488229 0.7290651 2
7225  1.285433 -0.6488229 0.7290651 1
7226  1.285433 -0.6488229 0.7290651 2
7227  1.285433 -0.6488229 0.7290651 1
7228  1.285433 -0.6488229 0.7290651 1
7229  1.285433 -0.6488229 0.7290651 2
7230  1.285433 -0.6488229 0.7290651 2
7231  1.285433 -0.6488229 0.7290651 2
7232  1.285433 -0.6488229 0.7290651 2
7233  1.285433 -0.6488229 0.7290651 1
7234  1.285433 -0.6488229 0.7290651 3
7235  1.285433 -0.6488229 0.7290651 2
7236  1.285433 -0.6488229 0.7290651 3
7237  1.285433 -0.6488229 0.7290651 3
7238  1.285433 -0.6488229 0.7290651 2
7239  1.285433 -0.6488229 0.7290651 2
7240  1.285433 -0.6488229 0.7290651 3
7241  1.285433 -0.6488229 0.7290651 2
7242  1.285433 -0.6488229 0.7290651 2
7243  1.285433 -0.6488229 0.7290651 3
7244  1.285433 -0.6488229 0.7290651 3
7245  1.285433 -0.6488229 0.7290651 1
7246  1.285433 -0.6488229 0.7290651 1
7247  1.285433 -0.6488229 0.7290651 1
7248  1.285433 -0.6488229 0.7290651 1
7249  1.285433 -0.6488229 0.7290651 2
7250  1.285433 -0.6488229 0.7290651 1
7251  1.285433 -0.6488229 0.7290651 1
7252  1.285433 -0.6488229 0.7290651 1
7253  1.285433 -0.6488229 0.7290651 1
7254  1.285433 -0.6488229 0.7290651 1
7255  1.285433 -0.6488229 0.7290651 2
7256  1.285433 -0.6488229 0.7290651 3
7257  1.285433 -0.6488229 0.7290651 3
7258  1.285433 -0.6488229 0.7290651 3
7259  1.285433 -0.6488229 0.7290651 3
7260  1.285433 -0.6488229 0.7290651 1
7261  1.285433 -0.6488229 0.7290651 3
7262  1.285433 -0.6488229 0.7290651 1
7263  1.285433 -0.6488229 0.7290651 2
7264  1.285433 -0.6488229 0.7290651 2
7265  1.285433 -0.6488229 0.7290651 2
7266  1.285433 -0.6488229 0.7290651 3
7267  1.285433 -0.6488229 0.7290651 1
7268  1.285433 -0.6488229 0.7290651 2
7269  1.285433 -0.6488229 0.7290651 1
7270  1.285433 -0.6488229 0.7290651 3
7271  1.285433 -0.6488229 0.7290651 3
7272  1.285433 -0.6488229 0.7290651 3
7273  1.285433 -0.6488229 0.7290651 2
7274  1.285433 -0.6488229 0.7290651 2
7275  1.285433 -0.6488229 0.7290651 3
7276  1.285433 -0.6488229 0.7290651 3
7277  1.285433 -0.6488229 0.7290651 2
7278  1.285433 -0.6488229 0.7290651 3
7279  1.285433 -0.6488229 0.7290651 1
7280  1.285433 -0.6488229 0.7290651 2
7281  1.285433 -0.6488229 0.7290651 3
7282  1.285433 -0.6488229 0.7290651 2
7283  1.285433 -0.6488229 0.7290651 1
7284  1.285433 -0.6488229 0.7290651 2
7285  1.285433 -0.6488229 0.7290651 2
7286  1.285433 -0.6488229 0.7290651 2
7287  1.285433 -0.6488229 0.7290651 1
7288  1.285433 -0.6488229 0.7290651 2
7289  1.285433 -0.6488229 0.7290651 3
7290  1.285433 -0.6488229 0.7290651 1
7291  1.285433 -0.6488229 0.7290651 3
7292  1.285433 -0.6488229 0.7290651 2
7293  1.285433 -0.6488229 0.7290651 3
7294  1.285433 -0.6488229 0.7290651 1
7295  1.285433 -0.6488229 0.7290651 2
7296  1.285433 -0.6488229 0.7290651 2
7297  1.285433 -0.6488229 0.7290651 3
7298  1.285433 -0.6488229 0.7290651 1
7299  1.285433 -0.6488229 0.7290651 3
7300  1.285433 -0.6488229 0.7290651 3
7301  1.285433 -0.6488229 0.7290651 3
7302  1.285433 -0.6488229 0.7290651 2
7303  1.285433 -0.6488229 0.7290651 2
7304  1.285433 -0.6488229 0.7290651 3
7305  1.285433 -0.6488229 0.7290651 2
7306  1.285433 -0.6488229 0.7290651 1
7307  1.285433 -0.6488229 0.7290651 3
7308  1.285433 -0.6488229 0.7290651 1
7309  1.285433 -0.6488229 0.7290651 1
7310  1.285433 -0.6488229 0.7290651 1
7311  1.285433 -0.6488229 0.7290651 1
7312  1.285433 -0.6488229 0.7290651 3
7313  1.285433 -0.6488229 0.7290651 3
7314  1.285433 -0.6488229 0.7290651 3
7315  1.285433 -0.6488229 0.7290651 1
7316  1.285433 -0.6488229 0.7290651 1
7317  1.285433 -0.6488229 0.7290651 1
7318  1.285433 -0.6488229 0.7290651 1
7319  1.285433 -0.6488229 0.7290651 3
7320  1.285433 -0.6488229 0.7290651 3
7321  1.285433 -0.6488229 0.7290651 3
7322  1.285433 -0.6488229 0.7290651 2
7323  1.285433 -0.6488229 0.7290651 2
7324  1.285433 -0.6488229 0.7290651 3
7325  1.285433 -0.6488229 0.7290651 3
7326  1.285433 -0.6488229 0.7290651 3
7327  1.285433 -0.6488229 0.7290651 2
7328  1.285433 -0.6488229 0.7290651 2
7329  1.285433 -0.6488229 0.7290651 1
7330  1.285433 -0.6488229 0.7290651 2
7331  1.285433 -0.6488229 0.7290651 1
7332  1.285433 -0.6488229 0.7290651 3
7333  1.285433 -0.6488229 0.7290651 3
7334  1.285433 -0.6488229 0.7290651 3
7335  1.285433 -0.6488229 0.7290651 3
7336  1.285433 -0.6488229 0.7290651 3
7337  1.285433 -0.6488229 0.7290651 3
7338  1.285433 -0.6488229 0.7290651 3
7339  1.285433 -0.6488229 0.7290651 2
7340  1.285433 -0.6488229 0.7290651 1
7341  1.285433 -0.6488229 0.7290651 2
7342  1.285433 -0.6488229 0.7290651 2
7343  1.285433 -0.6488229 0.7290651 3
7344  1.285433 -0.6488229 0.7290651 3
7345  1.285433 -0.6488229 0.7290651 1
7346  1.285433 -0.6488229 0.7290651 3
7347  1.285433 -0.6488229 0.7290651 2
7348  1.285433 -0.6488229 0.7290651 1
7349  1.285433 -0.6488229 0.7290651 2
7350  1.285433 -0.6488229 0.7290651 1
7351  1.285433 -0.6488229 0.7290651 1
7352  1.285433 -0.6488229 0.7290651 2
7353  1.287957 -0.6564040 0.7238406 2
7354  1.287957 -0.6564040 0.7238406 3
7355  1.287957 -0.6564040 0.7238406 3
7356  1.287957 -0.6564040 0.7238406 1
7357  1.287957 -0.6564040 0.7238406 1
7358  1.287957 -0.6564040 0.7238406 3
7359  1.287957 -0.6564040 0.7238406 2
7360  1.287957 -0.6564040 0.7238406 1
7361  1.287957 -0.6564040 0.7238406 2
7362  1.287957 -0.6564040 0.7238406 1
7363  1.287957 -0.6564040 0.7238406 3
7364  1.287957 -0.6564040 0.7238406 3
7365  1.287957 -0.6564040 0.7238406 1
7366  1.287957 -0.6564040 0.7238406 1
7367  1.287957 -0.6564040 0.7238406 2
7368  1.287957 -0.6564040 0.7238406 3
7369  1.287957 -0.6564040 0.7238406 3
7370  1.287957 -0.6564040 0.7238406 3
7371  1.287957 -0.6564040 0.7238406 3
7372  1.287957 -0.6564040 0.7238406 3
7373  1.287957 -0.6564040 0.7238406 1
7374  1.287957 -0.6564040 0.7238406 3
7375  1.287957 -0.6564040 0.7238406 3
7376  1.287957 -0.6564040 0.7238406 2
7377  1.287957 -0.6564040 0.7238406 2
7378  1.287957 -0.6564040 0.7238406 1
7379  1.287957 -0.6564040 0.7238406 1
7380  1.287957 -0.6564040 0.7238406 3
7381  1.287957 -0.6564040 0.7238406 2
7382  1.287957 -0.6564040 0.7238406 3
7383  1.287957 -0.6564040 0.7238406 2
7384  1.287957 -0.6564040 0.7238406 1
7385  1.287957 -0.6564040 0.7238406 2
7386  1.287957 -0.6564040 0.7238406 3
7387  1.287957 -0.6564040 0.7238406 3
7388  1.287957 -0.6564040 0.7238406 3
7389  1.287957 -0.6564040 0.7238406 1
7390  1.287957 -0.6564040 0.7238406 1
7391  1.287957 -0.6564040 0.7238406 2
7392  1.287957 -0.6564040 0.7238406 1
7393  1.287957 -0.6564040 0.7238406 2
7394  1.287957 -0.6564040 0.7238406 1
7395  1.287957 -0.6564040 0.7238406 3
7396  1.287957 -0.6564040 0.7238406 2
7397  1.287957 -0.6564040 0.7238406 3
7398  1.287957 -0.6564040 0.7238406 1
7399  1.287957 -0.6564040 0.7238406 1
7400  1.287957 -0.6564040 0.7238406 2
7401  1.287957 -0.6564040 0.7238406 1
7402  1.287957 -0.6564040 0.7238406 2
7403  1.287957 -0.6564040 0.7238406 3
7404  1.287957 -0.6564040 0.7238406 2
7405  1.287957 -0.6564040 0.7238406 2
7406  1.287957 -0.6564040 0.7238406 1
7407  1.287957 -0.6564040 0.7238406 3
7408  1.287957 -0.6564040 0.7238406 2
7409  1.287957 -0.6564040 0.7238406 3
7410  1.287957 -0.6564040 0.7238406 2
7411  1.287957 -0.6564040 0.7238406 2
7412  1.287957 -0.6564040 0.7238406 3
7413  1.287957 -0.6564040 0.7238406 3
7414  1.287957 -0.6564040 0.7238406 2
7415  1.287957 -0.6564040 0.7238406 2
7416  1.287957 -0.6564040 0.7238406 3
7417  1.287957 -0.6564040 0.7238406 2
7418  1.287957 -0.6564040 0.7238406 3
7419  1.287957 -0.6564040 0.7238406 1
7420  1.287957 -0.6564040 0.7238406 2
7421  1.287957 -0.6564040 0.7238406 3
7422  1.287957 -0.6564040 0.7238406 3
7423  1.287957 -0.6564040 0.7238406 3
7424  1.287957 -0.6564040 0.7238406 1
7425  1.287957 -0.6564040 0.7238406 2
7426  1.287957 -0.6564040 0.7238406 3
7427  1.287957 -0.6564040 0.7238406 3
7428  1.287957 -0.6564040 0.7238406 3
7429  1.287957 -0.6564040 0.7238406 3
7430  1.287957 -0.6564040 0.7238406 2
7431  1.287957 -0.6564040 0.7238406 1
7432  1.287957 -0.6564040 0.7238406 1
7433  1.287957 -0.6564040 0.7238406 3
7434  1.287957 -0.6564040 0.7238406 3
7435  1.287957 -0.6564040 0.7238406 3
7436  1.287957 -0.6564040 0.7238406 2
7437  1.287957 -0.6564040 0.7238406 3
7438  1.287957 -0.6564040 0.7238406 1
7439  1.287957 -0.6564040 0.7238406 3
7440  1.287957 -0.6564040 0.7238406 3
7441  1.287957 -0.6564040 0.7238406 1
7442  1.287957 -0.6564040 0.7238406 2
7443  1.287957 -0.6564040 0.7238406 1
7444  1.287957 -0.6564040 0.7238406 3
7445  1.287957 -0.6564040 0.7238406 1
7446  1.287957 -0.6564040 0.7238406 1
7447  1.287957 -0.6564040 0.7238406 2
7448  1.287957 -0.6564040 0.7238406 1
7449  1.287957 -0.6564040 0.7238406 2
7450  1.287957 -0.6564040 0.7238406 2
7451  1.287957 -0.6564040 0.7238406 2
7452  1.287957 -0.6564040 0.7238406 1
7453  1.287957 -0.6564040 0.7238406 1
7454  1.287957 -0.6564040 0.7238406 3
7455  1.287957 -0.6564040 0.7238406 1
7456  1.287957 -0.6564040 0.7238406 3
7457  1.287957 -0.6564040 0.7238406 3
7458  1.287957 -0.6564040 0.7238406 3
7459  1.287957 -0.6564040 0.7238406 1
7460  1.287957 -0.6564040 0.7238406 3
7461  1.287957 -0.6564040 0.7238406 1
7462  1.287957 -0.6564040 0.7238406 1
7463  1.287957 -0.6564040 0.7238406 3
7464  1.287957 -0.6564040 0.7238406 3
7465  1.287957 -0.6564040 0.7238406 1
7466  1.287957 -0.6564040 0.7238406 2
7467  1.287957 -0.6564040 0.7238406 3
7468  1.287957 -0.6564040 0.7238406 3
7469  1.287957 -0.6564040 0.7238406 1
7470  1.287957 -0.6564040 0.7238406 1
7471  1.287957 -0.6564040 0.7238406 1
7472  1.287957 -0.6564040 0.7238406 2
7473  1.287957 -0.6564040 0.7238406 1
7474  1.287957 -0.6564040 0.7238406 3
7475  1.287957 -0.6564040 0.7238406 1
7476  1.287957 -0.6564040 0.7238406 2
7477  1.287957 -0.6564040 0.7238406 3
7478  1.287957 -0.6564040 0.7238406 1
7479  1.287957 -0.6564040 0.7238406 3
7480  1.287957 -0.6564040 0.7238406 2
7481  1.287957 -0.6564040 0.7238406 1
7482  1.287957 -0.6564040 0.7238406 3
7483  1.287957 -0.6564040 0.7238406 3
7484  1.287957 -0.6564040 0.7238406 1
7485  1.287957 -0.6564040 0.7238406 1
7486  1.287957 -0.6564040 0.7238406 3
7487  1.287957 -0.6564040 0.7238406 1
7488  1.287957 -0.6564040 0.7238406 3
7489  1.287957 -0.6564040 0.7238406 2
7490  1.287957 -0.6564040 0.7238406 3
7491  1.287957 -0.6564040 0.7238406 1
7492  1.287957 -0.6564040 0.7238406 2
7493  1.287957 -0.6564040 0.7238406 2
7494  1.287957 -0.6564040 0.7238406 1
7495  1.287957 -0.6564040 0.7238406 3
7496  1.287957 -0.6564040 0.7238406 3
7497  1.287957 -0.6564040 0.7238406 3
7498  1.287957 -0.6564040 0.7238406 2
7499  1.287957 -0.6564040 0.7238406 3
7500  1.287957 -0.6564040 0.7238406 3
7501  1.287957 -0.6564040 0.7238406 2
7502  1.287957 -0.6564040 0.7238406 3
7503  1.287957 -0.6564040 0.7238406 2
7504  1.287957 -0.6564040 0.7238406 3
7505  1.287957 -0.6564040 0.7238406 1
7506  1.287957 -0.6564040 0.7238406 3
7507  1.287957 -0.6564040 0.7238406 2
7508  1.287957 -0.6564040 0.7238406 3
7509  1.287957 -0.6564040 0.7238406 2
7510  1.287957 -0.6564040 0.7238406 1
7511  1.287957 -0.6564040 0.7238406 1
7512  1.287957 -0.6564040 0.7238406 3
7513  1.287957 -0.6564040 0.7238406 2
7514  1.287957 -0.6564040 0.7238406 1
7515  1.287957 -0.6564040 0.7238406 1
7516  1.287957 -0.6564040 0.7238406 3
7517  1.287957 -0.6564040 0.7238406 2
7518  1.287957 -0.6564040 0.7238406 3
7519  1.287957 -0.6564040 0.7238406 1
7520  1.287957 -0.6564040 0.7238406 1
7521  1.287957 -0.6564040 0.7238406 3
7522  1.287957 -0.6564040 0.7238406 2
7523  1.287957 -0.6564040 0.7238406 1
7524  1.287957 -0.6564040 0.7238406 1
7525  1.287957 -0.6564040 0.7238406 1
7526  1.287957 -0.6564040 0.7238406 2
7527  1.287957 -0.6564040 0.7238406 1
7528  1.287957 -0.6564040 0.7238406 3
7529  1.287957 -0.6564040 0.7238406 2
7530  1.287957 -0.6564040 0.7238406 1
7531  1.287957 -0.6564040 0.7238406 1
7532  1.287957 -0.6564040 0.7238406 1
7533  1.287957 -0.6564040 0.7238406 3
7534  1.287957 -0.6564040 0.7238406 1
7535  1.287957 -0.6564040 0.7238406 3
7536  1.287957 -0.6564040 0.7238406 3
7537  1.287957 -0.6564040 0.7238406 1
7538  1.287957 -0.6564040 0.7238406 2
7539  1.287957 -0.6564040 0.7238406 2
7540  1.287957 -0.6564040 0.7238406 3
7541  1.287957 -0.6564040 0.7238406 2
7542  1.287957 -0.6564040 0.7238406 2
7543  1.287957 -0.6564040 0.7238406 1
7544  1.287957 -0.6564040 0.7238406 1
7545  1.287957 -0.6564040 0.7238406 3
7546  1.287957 -0.6564040 0.7238406 3
7547  1.287957 -0.6564040 0.7238406 1
7548  1.287957 -0.6564040 0.7238406 2
7549  1.287957 -0.6564040 0.7238406 3
7550  1.287957 -0.6564040 0.7238406 1
7551  1.287957 -0.6564040 0.7238406 2
7552  1.287957 -0.6564040 0.7238406 2
7553  1.287957 -0.6564040 0.7238406 1
7554  1.287957 -0.6564040 0.7238406 3
7555  1.287957 -0.6564040 0.7238406 3
7556  1.287957 -0.6564040 0.7238406 1
7557  1.287957 -0.6564040 0.7238406 1
7558  1.287957 -0.6564040 0.7238406 1
7559  1.287957 -0.6564040 0.7238406 3
7560  1.287957 -0.6564040 0.7238406 2
7561  1.287957 -0.6564040 0.7238406 2
7562  1.287957 -0.6564040 0.7238406 2
7563  1.287957 -0.6564040 0.7238406 3
7564  1.287957 -0.6564040 0.7238406 1
7565  1.287957 -0.6564040 0.7238406 1
7566  1.287957 -0.6564040 0.7238406 3
7567  1.287957 -0.6564040 0.7238406 2
7568  1.287957 -0.6564040 0.7238406 2
7569  1.287957 -0.6564040 0.7238406 2
7570  1.287957 -0.6564040 0.7238406 3
7571  1.287957 -0.6564040 0.7238406 3
7572  1.287957 -0.6564040 0.7238406 3
7573  1.287957 -0.6564040 0.7238406 1
7574  1.287957 -0.6564040 0.7238406 1
7575  1.287957 -0.6564040 0.7238406 3
7576  1.287957 -0.6564040 0.7238406 1
7577  1.287957 -0.6564040 0.7238406 2
7578  1.287957 -0.6564040 0.7238406 1
7579  1.287957 -0.6564040 0.7238406 2
7580  1.287957 -0.6564040 0.7238406 3
7581  1.287957 -0.6564040 0.7238406 2
7582  1.287957 -0.6564040 0.7238406 2
7583  1.287957 -0.6564040 0.7238406 2
7584  1.287957 -0.6564040 0.7238406 2
7585  1.287957 -0.6564040 0.7238406 2
7586  1.287957 -0.6564040 0.7238406 3
7587  1.287957 -0.6564040 0.7238406 1
7588  1.287957 -0.6564040 0.7238406 1
7589  1.287957 -0.6564040 0.7238406 1
7590  1.287957 -0.6564040 0.7238406 3
7591  1.287957 -0.6564040 0.7238406 1
7592  1.287957 -0.6564040 0.7238406 3
7593  1.287957 -0.6564040 0.7238406 1
7594  1.287957 -0.6564040 0.7238406 1
7595  1.287957 -0.6564040 0.7238406 3
7596  1.287957 -0.6564040 0.7238406 1
7597  1.287957 -0.6564040 0.7238406 3
7598  1.287957 -0.6564040 0.7238406 3
7599  1.287957 -0.6564040 0.7238406 1
7600  1.287957 -0.6564040 0.7238406 3
7601  1.287957 -0.6564040 0.7238406 2
7602  1.287957 -0.6564040 0.7238406 2
7603  1.287957 -0.6564040 0.7238406 3
7604  1.287957 -0.6564040 0.7238406 1
7605  1.287957 -0.6564040 0.7238406 3
7606  1.287957 -0.6564040 0.7238406 2
7607  1.287957 -0.6564040 0.7238406 1
7608  1.287957 -0.6564040 0.7238406 1
7609  1.287957 -0.6564040 0.7238406 1
7610  1.287957 -0.6564040 0.7238406 1
7611  1.287957 -0.6564040 0.7238406 3
7612  1.287957 -0.6564040 0.7238406 2
7613  1.287957 -0.6564040 0.7238406 3
7614  1.287957 -0.6564040 0.7238406 1
7615  1.287957 -0.6564040 0.7238406 1
7616  1.287957 -0.6564040 0.7238406 3
7617  1.287957 -0.6564040 0.7238406 3
7618  1.287957 -0.6564040 0.7238406 3
7619  1.287957 -0.6564040 0.7238406 3
7620  1.287957 -0.6564040 0.7238406 1
7621  1.287957 -0.6564040 0.7238406 3
7622  1.287957 -0.6564040 0.7238406 1
7623  1.287957 -0.6564040 0.7238406 1
7624  1.287957 -0.6564040 0.7238406 2
7625  1.287957 -0.6564040 0.7238406 2
7626  1.287957 -0.6564040 0.7238406 2
7627  1.287957 -0.6564040 0.7238406 1
7628  1.287957 -0.6564040 0.7238406 3
7629  1.287957 -0.6564040 0.7238406 1
7630  1.287957 -0.6564040 0.7238406 1
7631  1.287957 -0.6564040 0.7238406 1
7632  1.287957 -0.6564040 0.7238406 1
7633  1.287957 -0.6564040 0.7238406 1
7634  1.287957 -0.6564040 0.7238406 1
7635  1.287957 -0.6564040 0.7238406 3
7636  1.287957 -0.6564040 0.7238406 2
7637  1.287957 -0.6564040 0.7238406 1
7638  1.287957 -0.6564040 0.7238406 2
7639  1.287957 -0.6564040 0.7238406 1
7640  1.287957 -0.6564040 0.7238406 2
7641  1.287957 -0.6564040 0.7238406 2
7642  1.287957 -0.6564040 0.7238406 1
7643  1.287957 -0.6564040 0.7238406 2
7644  1.287957 -0.6564040 0.7238406 1
7645  1.287957 -0.6564040 0.7238406 2
7646  1.287957 -0.6564040 0.7238406 2
7647  1.287957 -0.6564040 0.7238406 3
7648  1.287957 -0.6564040 0.7238406 2
7649  1.287957 -0.6564040 0.7238406 3
7650  1.287957 -0.6564040 0.7238406 3
7651  1.287957 -0.6564040 0.7238406 2
7652  1.287957 -0.6564040 0.7238406 2
7653  1.287957 -0.6564040 0.7238406 2
7654  1.287957 -0.6564040 0.7238406 3
7655  1.287957 -0.6564040 0.7238406 2
7656  1.287957 -0.6564040 0.7238406 3
7657  1.287957 -0.6564040 0.7238406 3
7658  1.287957 -0.6564040 0.7238406 2
7659  1.287957 -0.6564040 0.7238406 1
7660  1.287957 -0.6564040 0.7238406 2
7661  1.287957 -0.6564040 0.7238406 3
7662  1.287957 -0.6564040 0.7238406 2
7663  1.287957 -0.6564040 0.7238406 1
7664  1.287957 -0.6564040 0.7238406 1
7665  1.287957 -0.6564040 0.7238406 1
7666  1.287957 -0.6564040 0.7238406 1
7667  1.287957 -0.6564040 0.7238406 1
7668  1.287957 -0.6564040 0.7238406 2
7669  1.287957 -0.6564040 0.7238406 2
7670  1.287957 -0.6564040 0.7238406 1
7671  1.287957 -0.6564040 0.7238406 3
7672  1.287957 -0.6564040 0.7238406 3
7673  1.287957 -0.6564040 0.7238406 3
7674  1.287957 -0.6564040 0.7238406 1
7675  1.287957 -0.6564040 0.7238406 3
7676  1.287957 -0.6564040 0.7238406 3
7677  1.287957 -0.6564040 0.7238406 1
7678  1.287957 -0.6564040 0.7238406 1
7679  1.287957 -0.6564040 0.7238406 2
7680  1.287957 -0.6564040 0.7238406 3
7681  1.287957 -0.6564040 0.7238406 1
7682  1.287957 -0.6564040 0.7238406 2
7683  1.287957 -0.6564040 0.7238406 1
7684  1.287957 -0.6564040 0.7238406 2
7685  1.287957 -0.6564040 0.7238406 3
7686  1.287957 -0.6564040 0.7238406 1
7687  1.287957 -0.6564040 0.7238406 3
7688  1.287957 -0.6564040 0.7238406 1
7689  1.287957 -0.6564040 0.7238406 3
7690  1.287957 -0.6564040 0.7238406 3
7691  1.287957 -0.6564040 0.7238406 2
7692  1.287957 -0.6564040 0.7238406 3
7693  1.287957 -0.6564040 0.7238406 2
7694  1.287957 -0.6564040 0.7238406 1
7695  1.287957 -0.6564040 0.7238406 2
7696  1.287957 -0.6564040 0.7238406 1
7697  1.287957 -0.6564040 0.7238406 3
7698  1.287957 -0.6564040 0.7238406 3
7699  1.287957 -0.6564040 0.7238406 3
7700  1.287957 -0.6564040 0.7238406 1
7701  1.287957 -0.6564040 0.7238406 3
7702  1.287957 -0.6564040 0.7238406 3
7703  1.287957 -0.6564040 0.7238406 3
7704  1.287957 -0.6564040 0.7238406 3
7705  1.287957 -0.6564040 0.7238406 2
7706  1.287957 -0.6564040 0.7238406 2
7707  1.287957 -0.6564040 0.7238406 2
7708  1.287957 -0.6564040 0.7238406 1
7709  1.287957 -0.6564040 0.7238406 2
7710  1.287957 -0.6564040 0.7238406 2
7711  1.287957 -0.6564040 0.7238406 3
7712  1.287957 -0.6564040 0.7238406 2
7713  1.287957 -0.6564040 0.7238406 1
7714  1.287957 -0.6564040 0.7238406 2
7715  1.287957 -0.6564040 0.7238406 3
7716  1.287957 -0.6564040 0.7238406 2
7717  1.287957 -0.6564040 0.7238406 1
7718  1.287957 -0.6564040 0.7238406 1
7719  1.287957 -0.6564040 0.7238406 3
7720  1.287957 -0.6564040 0.7238406 3
7721  1.287957 -0.6564040 0.7238406 1
7722  1.287957 -0.6564040 0.7238406 2
7723  1.287957 -0.6564040 0.7238406 3
7724  1.287957 -0.6564040 0.7238406 1
7725  1.287957 -0.6564040 0.7238406 2
7726  1.287957 -0.6564040 0.7238406 3
7727  1.287957 -0.6564040 0.7238406 2
7728  1.287957 -0.6564040 0.7238406 2
7729  1.287957 -0.6564040 0.7238406 3
7730  1.287957 -0.6564040 0.7238406 2
7731  1.287957 -0.6564040 0.7238406 1
7732  1.287957 -0.6564040 0.7238406 1
7733  1.287957 -0.6564040 0.7238406 3
7734  1.287957 -0.6564040 0.7238406 2
7735  1.287957 -0.6564040 0.7238406 1
7736  1.287957 -0.6564040 0.7238406 1
7737  1.287957 -0.6564040 0.7238406 1
7738  1.287957 -0.6564040 0.7238406 3
7739  1.287957 -0.6564040 0.7238406 2
7740  1.287957 -0.6564040 0.7238406 2
7741  1.287957 -0.6564040 0.7238406 1
7742  1.287957 -0.6564040 0.7238406 2
7743  1.287957 -0.6564040 0.7238406 1
7744  1.287957 -0.6564040 0.7238406 3
7745  1.287957 -0.6564040 0.7238406 3
7746  1.287957 -0.6564040 0.7238406 2
7747  1.287957 -0.6564040 0.7238406 2
7748  1.287957 -0.6564040 0.7238406 1
7749  1.287957 -0.6564040 0.7238406 1
7750  1.287957 -0.6564040 0.7238406 1
7751  1.287957 -0.6564040 0.7238406 2
7752  1.287957 -0.6564040 0.7238406 3
7753  1.287957 -0.6564040 0.7238406 3
7754  1.287957 -0.6564040 0.7238406 3
7755  1.287957 -0.6564040 0.7238406 1
7756  1.287957 -0.6564040 0.7238406 3
7757  1.287957 -0.6564040 0.7238406 1
7758  1.287957 -0.6564040 0.7238406 3
7759  1.287957 -0.6564040 0.7238406 2
7760  1.287957 -0.6564040 0.7238406 3
7761  1.287957 -0.6564040 0.7238406 2
7762  1.287957 -0.6564040 0.7238406 1
7763  1.287957 -0.6564040 0.7238406 2
7764  1.287957 -0.6564040 0.7238406 1
7765  1.287957 -0.6564040 0.7238406 3
7766  1.287957 -0.6564040 0.7238406 2
7767  1.287957 -0.6564040 0.7238406 1
7768  1.287957 -0.6564040 0.7238406 3
7769  1.287957 -0.6564040 0.7238406 1
7770  1.287957 -0.6564040 0.7238406 1
7771  1.287957 -0.6564040 0.7238406 2
7772  1.287957 -0.6564040 0.7238406 2
7773  1.287957 -0.6564040 0.7238406 2
7774  1.287957 -0.6564040 0.7238406 1
7775  1.287957 -0.6564040 0.7238406 2
7776  1.287957 -0.6564040 0.7238406 2
7777  1.287957 -0.6564040 0.7238406 1
7778  1.287957 -0.6564040 0.7238406 1
7779  1.287957 -0.6564040 0.7238406 3
7780  1.287957 -0.6564040 0.7238406 3
7781  1.287957 -0.6564040 0.7238406 2
7782  1.287957 -0.6564040 0.7238406 3
7783  1.287957 -0.6564040 0.7238406 2
7784  1.287957 -0.6564040 0.7238406 1
7785  1.287957 -0.6564040 0.7238406 1
7786  1.287957 -0.6564040 0.7238406 2
7787  1.287957 -0.6564040 0.7238406 2
7788  1.287957 -0.6564040 0.7238406 2
7789  1.287957 -0.6564040 0.7238406 1
7790  1.287957 -0.6564040 0.7238406 2
7791  1.287957 -0.6564040 0.7238406 3
7792  1.287957 -0.6564040 0.7238406 1
7793  1.287957 -0.6564040 0.7238406 2
7794  1.287957 -0.6564040 0.7238406 3
7795  1.287957 -0.6564040 0.7238406 2
7796  1.287957 -0.6564040 0.7238406 2
7797  1.287957 -0.6564040 0.7238406 1
7798  1.287957 -0.6564040 0.7238406 2
7799  1.287957 -0.6564040 0.7238406 3
7800  1.287957 -0.6564040 0.7238406 3
7801  1.287957 -0.6564040 0.7238406 1
7802  1.287957 -0.6564040 0.7238406 1
7803  1.287957 -0.6564040 0.7238406 3
7804  1.287957 -0.6564040 0.7238406 1
7805  1.287957 -0.6564040 0.7238406 3
7806  1.287957 -0.6564040 0.7238406 3
7807  1.287957 -0.6564040 0.7238406 1
7808  1.287957 -0.6564040 0.7238406 1
7809  1.287957 -0.6564040 0.7238406 1
7810  1.287957 -0.6564040 0.7238406 2
7811  1.287957 -0.6564040 0.7238406 3
7812  1.287957 -0.6564040 0.7238406 1
7813  1.287957 -0.6564040 0.7238406 2
7814  1.287957 -0.6564040 0.7238406 1
7815  1.287957 -0.6564040 0.7238406 2
7816  1.287957 -0.6564040 0.7238406 3
7817  1.287957 -0.6564040 0.7238406 2
7818  1.287957 -0.6564040 0.7238406 1
7819  1.287957 -0.6564040 0.7238406 1
7820  1.287957 -0.6564040 0.7238406 3
7821  1.287957 -0.6564040 0.7238406 2
7822  1.287957 -0.6564040 0.7238406 2
7823  1.287957 -0.6564040 0.7238406 2
7824  1.287957 -0.6564040 0.7238406 3
7825  1.287957 -0.6564040 0.7238406 1
7826  1.287957 -0.6564040 0.7238406 3
7827  1.287957 -0.6564040 0.7238406 1
7828  1.287957 -0.6564040 0.7238406 3
7829  1.287957 -0.6564040 0.7238406 2
7830  1.287957 -0.6564040 0.7238406 1
7831  1.287957 -0.6564040 0.7238406 1
7832  1.287957 -0.6564040 0.7238406 3
7833  1.287957 -0.6564040 0.7238406 3
7834  1.287957 -0.6564040 0.7238406 3
7835  1.287957 -0.6564040 0.7238406 1
7836  1.287957 -0.6564040 0.7238406 1
7837  1.287957 -0.6564040 0.7238406 2
7838  1.287957 -0.6564040 0.7238406 1
7839  1.287957 -0.6564040 0.7238406 2
7840  1.287957 -0.6564040 0.7238406 3
7841  1.287957 -0.6564040 0.7238406 1
7842  1.287957 -0.6564040 0.7238406 2
7843  1.287957 -0.6564040 0.7238406 3
7844  1.287957 -0.6564040 0.7238406 2
7845  1.287957 -0.6564040 0.7238406 2
7846  1.287957 -0.6564040 0.7238406 3
7847  1.287957 -0.6564040 0.7238406 1
7848  1.287957 -0.6564040 0.7238406 2
7849  1.287957 -0.6564040 0.7238406 1
7850  1.287957 -0.6564040 0.7238406 1
7851  1.287957 -0.6564040 0.7238406 2
7852  1.287957 -0.6564040 0.7238406 2
7853  1.287957 -0.6564040 0.7238406 1
7854  1.287957 -0.6564040 0.7238406 1
7855  1.287957 -0.6564040 0.7238406 1
7856  1.287957 -0.6564040 0.7238406 2
7857  1.287957 -0.6564040 0.7238406 1
7858  1.287957 -0.6564040 0.7238406 2
7859  1.287957 -0.6564040 0.7238406 2
7860  1.287957 -0.6564040 0.7238406 1
7861  1.287957 -0.6564040 0.7238406 2
7862  1.287957 -0.6564040 0.7238406 3
7863  1.287957 -0.6564040 0.7238406 3
7864  1.287957 -0.6564040 0.7238406 2
7865  1.287957 -0.6564040 0.7238406 3
7866  1.287957 -0.6564040 0.7238406 1
7867  1.287957 -0.6564040 0.7238406 1
7868  1.287957 -0.6564040 0.7238406 3
7869  1.287957 -0.6564040 0.7238406 3
7870  1.287957 -0.6564040 0.7238406 1
7871  1.287957 -0.6564040 0.7238406 1
7872  1.287957 -0.6564040 0.7238406 3
7873  1.287957 -0.6564040 0.7238406 2
7874  1.287957 -0.6564040 0.7238406 1
7875  1.287957 -0.6564040 0.7238406 3
7876  1.287957 -0.6564040 0.7238406 1
7877  1.287957 -0.6564040 0.7238406 2
7878  1.287957 -0.6564040 0.7238406 2
7879  1.287957 -0.6564040 0.7238406 2
7880  1.287957 -0.6564040 0.7238406 1
7881  1.287957 -0.6564040 0.7238406 1
7882  1.287957 -0.6564040 0.7238406 1
7883  1.287957 -0.6564040 0.7238406 3
7884  1.287957 -0.6564040 0.7238406 1
7885  1.287957 -0.6564040 0.7238406 1
7886  1.287957 -0.6564040 0.7238406 3
7887  1.287957 -0.6564040 0.7238406 1
7888  1.287957 -0.6564040 0.7238406 3
7889  1.287957 -0.6564040 0.7238406 1
7890  1.287957 -0.6564040 0.7238406 2
7891  1.287957 -0.6564040 0.7238406 1
7892  1.287957 -0.6564040 0.7238406 3
7893  1.287957 -0.6564040 0.7238406 1
7894  1.287957 -0.6564040 0.7238406 2
7895  1.287957 -0.6564040 0.7238406 3
7896  1.287957 -0.6564040 0.7238406 1
7897  1.287957 -0.6564040 0.7238406 1
7898  1.287957 -0.6564040 0.7238406 2
7899  1.287957 -0.6564040 0.7238406 2
7900  1.287957 -0.6564040 0.7238406 2
7901  1.287957 -0.6564040 0.7238406 1
7902  1.287957 -0.6564040 0.7238406 2
7903  1.287957 -0.6564040 0.7238406 1
7904  1.287957 -0.6564040 0.7238406 1
7905  1.287957 -0.6564040 0.7238406 1
7906  1.287957 -0.6564040 0.7238406 1
7907  1.287957 -0.6564040 0.7238406 3
7908  1.287957 -0.6564040 0.7238406 1
7909  1.287957 -0.6564040 0.7238406 1
7910  1.287957 -0.6564040 0.7238406 2
7911  1.287957 -0.6564040 0.7238406 2
7912  1.287957 -0.6564040 0.7238406 2
7913  1.287957 -0.6564040 0.7238406 3
7914  1.287957 -0.6564040 0.7238406 1
7915  1.287957 -0.6564040 0.7238406 3
7916  1.287957 -0.6564040 0.7238406 3
7917  1.287957 -0.6564040 0.7238406 1
7918  1.287957 -0.6564040 0.7238406 2
7919  1.287957 -0.6564040 0.7238406 1
7920  1.287957 -0.6564040 0.7238406 1
7921  1.287957 -0.6564040 0.7238406 1
7922  1.287957 -0.6564040 0.7238406 1
7923  1.287957 -0.6564040 0.7238406 2
7924  1.287957 -0.6564040 0.7238406 3
7925  1.287957 -0.6564040 0.7238406 1
7926  1.287957 -0.6564040 0.7238406 1
7927  1.287957 -0.6564040 0.7238406 3
7928  1.287957 -0.6564040 0.7238406 1
7929  1.287957 -0.6564040 0.7238406 3
7930  1.287957 -0.6564040 0.7238406 2
7931  1.287957 -0.6564040 0.7238406 3
7932  1.287957 -0.6564040 0.7238406 2
7933  1.287957 -0.6564040 0.7238406 2
7934  1.287957 -0.6564040 0.7238406 1
7935  1.287957 -0.6564040 0.7238406 2
7936  1.287957 -0.6564040 0.7238406 1
7937  1.287957 -0.6564040 0.7238406 3
7938  1.287957 -0.6564040 0.7238406 1
7939  1.287957 -0.6564040 0.7238406 2
7940  1.287957 -0.6564040 0.7238406 3
7941  1.287957 -0.6564040 0.7238406 2
7942  1.287957 -0.6564040 0.7238406 1
7943  1.287957 -0.6564040 0.7238406 3
7944  1.287957 -0.6564040 0.7238406 3
7945  1.287957 -0.6564040 0.7238406 1
7946  1.287957 -0.6564040 0.7238406 1
7947  1.287957 -0.6564040 0.7238406 3
7948  1.287957 -0.6564040 0.7238406 1
7949  1.287957 -0.6564040 0.7238406 1
7950  1.287957 -0.6564040 0.7238406 2
7951  1.287957 -0.6564040 0.7238406 2
7952  1.287957 -0.6564040 0.7238406 1
7953  1.287957 -0.6564040 0.7238406 2
7954  1.287957 -0.6564040 0.7238406 3
7955  1.287957 -0.6564040 0.7238406 3
7956  1.287957 -0.6564040 0.7238406 1
7957  1.287957 -0.6564040 0.7238406 1
7958  1.287957 -0.6564040 0.7238406 3
7959  1.287957 -0.6564040 0.7238406 2
7960  1.287957 -0.6564040 0.7238406 2
7961  1.287957 -0.6564040 0.7238406 1
7962  1.287957 -0.6564040 0.7238406 1
7963  1.287957 -0.6564040 0.7238406 2
7964  1.287957 -0.6564040 0.7238406 1
7965  1.287957 -0.6564040 0.7238406 3
7966  1.287957 -0.6564040 0.7238406 2
7967  1.287957 -0.6564040 0.7238406 1
7968  1.287957 -0.6564040 0.7238406 1
7969  1.287957 -0.6564040 0.7238406 2
7970  1.287957 -0.6564040 0.7238406 3
7971  1.287957 -0.6564040 0.7238406 2
7972  1.287957 -0.6564040 0.7238406 3
7973  1.287957 -0.6564040 0.7238406 2
7974  1.287957 -0.6564040 0.7238406 1
7975  1.287957 -0.6564040 0.7238406 2
7976  1.287957 -0.6564040 0.7238406 2
7977  1.287957 -0.6564040 0.7238406 2
7978  1.287957 -0.6564040 0.7238406 3
7979  1.287957 -0.6564040 0.7238406 2
7980  1.287957 -0.6564040 0.7238406 1
7981  1.287957 -0.6564040 0.7238406 3
7982  1.287957 -0.6564040 0.7238406 1
7983  1.287957 -0.6564040 0.7238406 1
7984  1.287957 -0.6564040 0.7238406 3
7985  1.287957 -0.6564040 0.7238406 3
7986  1.287957 -0.6564040 0.7238406 3
7987  1.287957 -0.6564040 0.7238406 2
7988  1.287957 -0.6564040 0.7238406 2
7989  1.287957 -0.6564040 0.7238406 2
7990  1.287957 -0.6564040 0.7238406 3
7991  1.287957 -0.6564040 0.7238406 1
7992  1.287957 -0.6564040 0.7238406 2
7993  1.287957 -0.6564040 0.7238406 3
7994  1.287957 -0.6564040 0.7238406 2
7995  1.287957 -0.6564040 0.7238406 3
7996  1.287957 -0.6564040 0.7238406 1
7997  1.287957 -0.6564040 0.7238406 1
7998  1.287957 -0.6564040 0.7238406 1
7999  1.287957 -0.6564040 0.7238406 2
8000  1.287957 -0.6564040 0.7238406 3
8001  1.287957 -0.6564040 0.7238406 3
8002  1.287957 -0.6564040 0.7238406 1
8003  1.287957 -0.6564040 0.7238406 2
8004  1.287957 -0.6564040 0.7238406 1
8005  1.287957 -0.6564040 0.7238406 3
8006  1.287957 -0.6564040 0.7238406 3
8007  1.287957 -0.6564040 0.7238406 1
8008  1.287957 -0.6564040 0.7238406 3
8009  1.287957 -0.6564040 0.7238406 3
8010  1.287957 -0.6564040 0.7238406 2
8011  1.287957 -0.6564040 0.7238406 3
8012  1.287957 -0.6564040 0.7238406 1
8013  1.287957 -0.6564040 0.7238406 2
8014  1.287957 -0.6564040 0.7238406 3
8015  1.287957 -0.6564040 0.7238406 1
8016  1.287957 -0.6564040 0.7238406 2
8017  1.287957 -0.6564040 0.7238406 2
8018  1.287957 -0.6564040 0.7238406 3
8019  1.287957 -0.6564040 0.7238406 2
8020  1.287957 -0.6564040 0.7238406 2
8021  1.287957 -0.6564040 0.7238406 2
8022  1.287957 -0.6564040 0.7238406 2
8023  1.287957 -0.6564040 0.7238406 3
8024  1.287957 -0.6564040 0.7238406 1
8025  1.287957 -0.6564040 0.7238406 3
8026  1.287957 -0.6564040 0.7238406 3
8027  1.287957 -0.6564040 0.7238406 2
8028  1.287957 -0.6564040 0.7238406 1
8029  1.287957 -0.6564040 0.7238406 2
8030  1.287957 -0.6564040 0.7238406 2
8031  1.287957 -0.6564040 0.7238406 1
8032  1.287957 -0.6564040 0.7238406 2
8033  1.287957 -0.6564040 0.7238406 1
8034  1.287957 -0.6564040 0.7238406 1
8035  1.287957 -0.6564040 0.7238406 1
8036  1.287957 -0.6564040 0.7238406 1
8037  1.287957 -0.6564040 0.7238406 2
8038  1.287957 -0.6564040 0.7238406 2
8039  1.287957 -0.6564040 0.7238406 3
8040  1.287957 -0.6564040 0.7238406 1
8041  1.287957 -0.6564040 0.7238406 3
8042  1.287957 -0.6564040 0.7238406 1
8043  1.287957 -0.6564040 0.7238406 1
8044  1.287957 -0.6564040 0.7238406 2
8045  1.287957 -0.6564040 0.7238406 1
8046  1.287957 -0.6564040 0.7238406 2
8047  1.287957 -0.6564040 0.7238406 1
8048  1.287957 -0.6564040 0.7238406 1
8049  1.287957 -0.6564040 0.7238406 3
8050  1.287957 -0.6564040 0.7238406 1
8051  1.287957 -0.6564040 0.7238406 3
8052  1.287957 -0.6564040 0.7238406 3
8053  1.287957 -0.6564040 0.7238406 3
8054  1.287957 -0.6564040 0.7238406 2
8055  1.287957 -0.6564040 0.7238406 2
8056  1.287957 -0.6564040 0.7238406 2
8057  1.287957 -0.6564040 0.7238406 2
8058  1.287957 -0.6564040 0.7238406 2
8059  1.287957 -0.6564040 0.7238406 2
8060  1.287957 -0.6564040 0.7238406 2
8061  1.287957 -0.6564040 0.7238406 1
8062  1.287957 -0.6564040 0.7238406 2
8063  1.287957 -0.6564040 0.7238406 1
8064  1.287957 -0.6564040 0.7238406 2
8065  1.287957 -0.6564040 0.7238406 1
8066  1.287957 -0.6564040 0.7238406 1
8067  1.287957 -0.6564040 0.7238406 2
8068  1.287957 -0.6564040 0.7238406 2
8069  1.287957 -0.6564040 0.7238406 2
8070  1.287957 -0.6564040 0.7238406 1
8071  1.287957 -0.6564040 0.7238406 2
8072  1.287957 -0.6564040 0.7238406 3
8073  1.287957 -0.6564040 0.7238406 2
8074  1.287957 -0.6564040 0.7238406 1
8075  1.287957 -0.6564040 0.7238406 2
8076  1.287957 -0.6564040 0.7238406 1
8077  1.287957 -0.6564040 0.7238406 1
8078  1.287957 -0.6564040 0.7238406 2
8079  1.287957 -0.6564040 0.7238406 2
8080  1.287957 -0.6564040 0.7238406 3
8081  1.287957 -0.6564040 0.7238406 3
8082  1.287957 -0.6564040 0.7238406 2
8083  1.287957 -0.6564040 0.7238406 1
8084  1.287957 -0.6564040 0.7238406 3
8085  1.287957 -0.6564040 0.7238406 2
8086  1.287957 -0.6564040 0.7238406 3
8087  1.287957 -0.6564040 0.7238406 2
8088  1.287957 -0.6564040 0.7238406 1
8089  1.287957 -0.6564040 0.7238406 2
8090  1.287957 -0.6564040 0.7238406 1
8091  1.287957 -0.6564040 0.7238406 2
8092  1.287957 -0.6564040 0.7238406 3
8093  1.287957 -0.6564040 0.7238406 2
8094  1.287957 -0.6564040 0.7238406 2
8095  1.287957 -0.6564040 0.7238406 3
8096  1.287957 -0.6564040 0.7238406 3
8097  1.287957 -0.6564040 0.7238406 2
8098  1.287957 -0.6564040 0.7238406 2
8099  1.287957 -0.6564040 0.7238406 2
8100  1.287957 -0.6564040 0.7238406 3
8101  1.287957 -0.6564040 0.7238406 3
8102  1.287957 -0.6564040 0.7238406 3
8103  1.287957 -0.6564040 0.7238406 2
8104  1.287957 -0.6564040 0.7238406 3
8105  1.287957 -0.6564040 0.7238406 2
8106  1.287957 -0.6564040 0.7238406 2
8107  1.287957 -0.6564040 0.7238406 1
8108  1.287957 -0.6564040 0.7238406 3
8109  1.287957 -0.6564040 0.7238406 2
8110  1.287957 -0.6564040 0.7238406 1
8111  1.287957 -0.6564040 0.7238406 3
8112  1.287957 -0.6564040 0.7238406 1
8113  1.287957 -0.6564040 0.7238406 2
8114  1.287957 -0.6564040 0.7238406 1
8115  1.287957 -0.6564040 0.7238406 1
8116  1.287957 -0.6564040 0.7238406 1
8117  1.287957 -0.6564040 0.7238406 3
8118  1.287957 -0.6564040 0.7238406 1
8119  1.287957 -0.6564040 0.7238406 3
8120  1.287957 -0.6564040 0.7238406 1
8121  1.287957 -0.6564040 0.7238406 1
8122  1.287957 -0.6564040 0.7238406 2
8123  1.287957 -0.6564040 0.7238406 1
8124  1.287957 -0.6564040 0.7238406 2
8125  1.287957 -0.6564040 0.7238406 1
8126  1.287957 -0.6564040 0.7238406 1
8127  1.287957 -0.6564040 0.7238406 3
8128  1.287957 -0.6564040 0.7238406 2
8129  1.287957 -0.6564040 0.7238406 2
8130  1.287957 -0.6564040 0.7238406 1
8131  1.287957 -0.6564040 0.7238406 3
8132  1.287957 -0.6564040 0.7238406 2
8133  1.287957 -0.6564040 0.7238406 3
8134  1.287957 -0.6564040 0.7238406 2
8135  1.287957 -0.6564040 0.7238406 3
8136  1.287957 -0.6564040 0.7238406 1
8137  1.287957 -0.6564040 0.7238406 2
8138  1.287957 -0.6564040 0.7238406 1
8139  1.287957 -0.6564040 0.7238406 1
8140  1.287957 -0.6564040 0.7238406 1
8141  1.287957 -0.6564040 0.7238406 2
8142  1.287957 -0.6564040 0.7238406 3
8143  1.287957 -0.6564040 0.7238406 2
8144  1.287957 -0.6564040 0.7238406 2
8145  1.287957 -0.6564040 0.7238406 1
8146  1.287957 -0.6564040 0.7238406 1
8147  1.287957 -0.6564040 0.7238406 3
8148  1.287957 -0.6564040 0.7238406 1
8149  1.287957 -0.6564040 0.7238406 1
8150  1.287957 -0.6564040 0.7238406 1
8151  1.287957 -0.6564040 0.7238406 1
8152  1.287957 -0.6564040 0.7238406 2
8153  1.287957 -0.6564040 0.7238406 1
8154  1.287957 -0.6564040 0.7238406 3
8155  1.287957 -0.6564040 0.7238406 1
8156  1.287957 -0.6564040 0.7238406 3
8157  1.287957 -0.6564040 0.7238406 3
8158  1.287957 -0.6564040 0.7238406 1
8159  1.287957 -0.6564040 0.7238406 3
8160  1.287957 -0.6564040 0.7238406 2
8161  1.287957 -0.6564040 0.7238406 3
8162  1.287957 -0.6564040 0.7238406 1
8163  1.287957 -0.6564040 0.7238406 3
8164  1.287957 -0.6564040 0.7238406 3
8165  1.287957 -0.6564040 0.7238406 2
8166  1.287957 -0.6564040 0.7238406 1
8167  1.287957 -0.6564040 0.7238406 1
8168  1.287957 -0.6564040 0.7238406 2
8169  1.287957 -0.6564040 0.7238406 2
8170  1.287957 -0.6564040 0.7238406 3
8171  1.287957 -0.6564040 0.7238406 2
8172  1.287957 -0.6564040 0.7238406 3
8173  1.287957 -0.6564040 0.7238406 1
8174  1.287957 -0.6564040 0.7238406 2
8175  1.287957 -0.6564040 0.7238406 3
8176  1.287957 -0.6564040 0.7238406 1
8177  1.287957 -0.6564040 0.7238406 3
8178  1.287957 -0.6564040 0.7238406 1
8179  1.287957 -0.6564040 0.7238406 1
8180  1.287957 -0.6564040 0.7238406 2
8181  1.287957 -0.6564040 0.7238406 3
8182  1.287957 -0.6564040 0.7238406 2
8183  1.287957 -0.6564040 0.7238406 1
8184  1.287957 -0.6564040 0.7238406 2
8185  1.287957 -0.6564040 0.7238406 1
8186  1.287957 -0.6564040 0.7238406 1
8187  1.287957 -0.6564040 0.7238406 1
8188  1.287957 -0.6564040 0.7238406 3
8189  1.287957 -0.6564040 0.7238406 3
8190  1.287957 -0.6564040 0.7238406 2
8191  1.287957 -0.6564040 0.7238406 2
8192  1.287957 -0.6564040 0.7238406 3
8193  1.287957 -0.6564040 0.7238406 1
8194  1.287957 -0.6564040 0.7238406 3
8195  1.287957 -0.6564040 0.7238406 1
8196  1.287957 -0.6564040 0.7238406 1
8197  1.287957 -0.6564040 0.7238406 2
8198  1.287957 -0.6564040 0.7238406 1
8199  1.287957 -0.6564040 0.7238406 3
8200  1.287957 -0.6564040 0.7238406 2
8201  1.287957 -0.6564040 0.7238406 2
8202  1.287957 -0.6564040 0.7238406 2
8203  1.287957 -0.6564040 0.7238406 1
8204  1.287957 -0.6564040 0.7238406 1
8205  1.287957 -0.6564040 0.7238406 1
8206  1.287957 -0.6564040 0.7238406 1
8207  1.287957 -0.6564040 0.7238406 3
8208  1.287957 -0.6564040 0.7238406 1
8209  1.287957 -0.6564040 0.7238406 3
8210  1.287957 -0.6564040 0.7238406 1
8211  1.287957 -0.6564040 0.7238406 2
8212  1.287957 -0.6564040 0.7238406 2
8213  1.287957 -0.6564040 0.7238406 3
8214  1.287957 -0.6564040 0.7238406 1
8215  1.287957 -0.6564040 0.7238406 1
8216  1.287957 -0.6564040 0.7238406 3
8217  1.287957 -0.6564040 0.7238406 2
8218  1.287957 -0.6564040 0.7238406 2
8219  1.287957 -0.6564040 0.7238406 3
8220  1.287957 -0.6564040 0.7238406 1
8221  1.287957 -0.6564040 0.7238406 1
8222  1.287957 -0.6564040 0.7238406 3
8223  1.287957 -0.6564040 0.7238406 3
8224  1.287957 -0.6564040 0.7238406 3
8225  1.287957 -0.6564040 0.7238406 2
8226  1.287957 -0.6564040 0.7238406 2
8227  1.287957 -0.6564040 0.7238406 2
8228  1.287957 -0.6564040 0.7238406 1
8229  1.287957 -0.6564040 0.7238406 2
8230  1.287957 -0.6564040 0.7238406 3
8231  1.287957 -0.6564040 0.7238406 2
8232  1.287957 -0.6564040 0.7238406 3
8233  1.287957 -0.6564040 0.7238406 2
8234  1.287957 -0.6564040 0.7238406 1
8235  1.287957 -0.6564040 0.7238406 1
8236  1.287957 -0.6564040 0.7238406 2
8237  1.287957 -0.6564040 0.7238406 1
8238  1.287957 -0.6564040 0.7238406 3
8239  1.287957 -0.6564040 0.7238406 3
8240  1.287957 -0.6564040 0.7238406 3
8241  1.287957 -0.6564040 0.7238406 2
8242  1.287957 -0.6564040 0.7238406 2
8243  1.287957 -0.6564040 0.7238406 3
8244  1.287957 -0.6564040 0.7238406 3
8245  1.287957 -0.6564040 0.7238406 1
8246  1.287957 -0.6564040 0.7238406 3
8247  1.287957 -0.6564040 0.7238406 2
8248  1.287957 -0.6564040 0.7238406 3
8249  1.287957 -0.6564040 0.7238406 3
8250  1.287957 -0.6564040 0.7238406 1
8251  1.287957 -0.6564040 0.7238406 2
8252  1.287957 -0.6564040 0.7238406 3
8253  1.287957 -0.6564040 0.7238406 3
8254  1.287957 -0.6564040 0.7238406 3
8255  1.287957 -0.6564040 0.7238406 1
8256  1.287957 -0.6564040 0.7238406 1
8257  1.287957 -0.6564040 0.7238406 3
8258  1.287957 -0.6564040 0.7238406 3
8259  1.287957 -0.6564040 0.7238406 3
8260  1.287957 -0.6564040 0.7238406 1
8261  1.287957 -0.6564040 0.7238406 1
8262  1.287957 -0.6564040 0.7238406 2
8263  1.287957 -0.6564040 0.7238406 3
8264  1.287957 -0.6564040 0.7238406 2
8265  1.287957 -0.6564040 0.7238406 2
8266  1.287957 -0.6564040 0.7238406 3
8267  1.287957 -0.6564040 0.7238406 3
8268  1.287957 -0.6564040 0.7238406 3
8269  1.287957 -0.6564040 0.7238406 1
8270  1.287957 -0.6564040 0.7238406 2
8271  1.287957 -0.6564040 0.7238406 1
8272  1.293254 -0.6534968 0.7218311 2
8273  1.293254 -0.6534968 0.7218311 2
8274  1.293254 -0.6534968 0.7218311 3
8275  1.293254 -0.6534968 0.7218311 1
8276  1.293254 -0.6534968 0.7218311 3
8277  1.293254 -0.6534968 0.7218311 1
8278  1.293254 -0.6534968 0.7218311 1
8279  1.293254 -0.6534968 0.7218311 2
8280  1.293254 -0.6534968 0.7218311 3
8281  1.293254 -0.6534968 0.7218311 2
8282  1.293254 -0.6534968 0.7218311 2
8283  1.293254 -0.6534968 0.7218311 1
8284  1.293254 -0.6534968 0.7218311 1
8285  1.293254 -0.6534968 0.7218311 1
8286  1.293254 -0.6534968 0.7218311 2
8287  1.293254 -0.6534968 0.7218311 2
8288  1.293254 -0.6534968 0.7218311 3
8289  1.293254 -0.6534968 0.7218311 1
8290  1.293254 -0.6534968 0.7218311 2
8291  1.293254 -0.6534968 0.7218311 2
8292  1.293254 -0.6534968 0.7218311 3
8293  1.293254 -0.6534968 0.7218311 3
8294  1.293254 -0.6534968 0.7218311 1
8295  1.293254 -0.6534968 0.7218311 1
8296  1.293254 -0.6534968 0.7218311 1
8297  1.293254 -0.6534968 0.7218311 1
8298  1.293254 -0.6534968 0.7218311 3
8299  1.293254 -0.6534968 0.7218311 3
8300  1.293254 -0.6534968 0.7218311 2
8301  1.293254 -0.6534968 0.7218311 2
8302  1.293254 -0.6534968 0.7218311 3
8303  1.293254 -0.6534968 0.7218311 3
8304  1.293254 -0.6534968 0.7218311 2
8305  1.293254 -0.6534968 0.7218311 2
8306  1.293254 -0.6534968 0.7218311 3
8307  1.293254 -0.6534968 0.7218311 2
8308  1.293254 -0.6534968 0.7218311 2
8309  1.293254 -0.6534968 0.7218311 2
8310  1.293254 -0.6534968 0.7218311 1
8311  1.293254 -0.6534968 0.7218311 1
8312  1.293254 -0.6534968 0.7218311 1
8313  1.293254 -0.6534968 0.7218311 3
8314  1.293254 -0.6534968 0.7218311 2
8315  1.293254 -0.6534968 0.7218311 2
8316  1.293254 -0.6534968 0.7218311 1
8317  1.293254 -0.6534968 0.7218311 1
8318  1.293254 -0.6534968 0.7218311 2
8319  1.293254 -0.6534968 0.7218311 1
8320  1.293254 -0.6534968 0.7218311 3
8321  1.293254 -0.6534968 0.7218311 2
8322  1.293254 -0.6534968 0.7218311 1
8323  1.293254 -0.6534968 0.7218311 1
8324  1.293254 -0.6534968 0.7218311 3
8325  1.293254 -0.6534968 0.7218311 1
8326  1.293254 -0.6534968 0.7218311 3
8327  1.293254 -0.6534968 0.7218311 1
8328  1.293254 -0.6534968 0.7218311 3
8329  1.293254 -0.6534968 0.7218311 2
8330  1.293254 -0.6534968 0.7218311 1
8331  1.293254 -0.6534968 0.7218311 1
8332  1.293254 -0.6534968 0.7218311 2
8333  1.293254 -0.6534968 0.7218311 3
8334  1.293254 -0.6534968 0.7218311 2
8335  1.293254 -0.6534968 0.7218311 1
8336  1.293254 -0.6534968 0.7218311 2
8337  1.293254 -0.6534968 0.7218311 1
8338  1.293254 -0.6534968 0.7218311 1
8339  1.293254 -0.6534968 0.7218311 1
8340  1.293254 -0.6534968 0.7218311 2
8341  1.293254 -0.6534968 0.7218311 1
8342  1.293254 -0.6534968 0.7218311 2
8343  1.293254 -0.6534968 0.7218311 1
8344  1.293254 -0.6534968 0.7218311 3
8345  1.293254 -0.6534968 0.7218311 3
8346  1.293254 -0.6534968 0.7218311 1
8347  1.293254 -0.6534968 0.7218311 2
8348  1.293254 -0.6534968 0.7218311 3
8349  1.293254 -0.6534968 0.7218311 1
8350  1.293254 -0.6534968 0.7218311 3
8351  1.293254 -0.6534968 0.7218311 1
8352  1.293254 -0.6534968 0.7218311 1
8353  1.293254 -0.6534968 0.7218311 1
8354  1.293254 -0.6534968 0.7218311 3
8355  1.293254 -0.6534968 0.7218311 3
8356  1.293254 -0.6534968 0.7218311 2
8357  1.293254 -0.6534968 0.7218311 3
8358  1.293254 -0.6534968 0.7218311 1
8359  1.293254 -0.6534968 0.7218311 3
8360  1.293254 -0.6534968 0.7218311 2
8361  1.293254 -0.6534968 0.7218311 2
8362  1.293254 -0.6534968 0.7218311 1
8363  1.293254 -0.6534968 0.7218311 1
8364  1.293254 -0.6534968 0.7218311 3
8365  1.293254 -0.6534968 0.7218311 2
8366  1.293254 -0.6534968 0.7218311 1
8367  1.293254 -0.6534968 0.7218311 2
8368  1.293254 -0.6534968 0.7218311 2
8369  1.293254 -0.6534968 0.7218311 1
8370  1.293254 -0.6534968 0.7218311 2
8371  1.293254 -0.6534968 0.7218311 1
8372  1.293254 -0.6534968 0.7218311 1
8373  1.293254 -0.6534968 0.7218311 3
8374  1.293254 -0.6534968 0.7218311 1
8375  1.293254 -0.6534968 0.7218311 2
8376  1.293254 -0.6534968 0.7218311 2
8377  1.293254 -0.6534968 0.7218311 1
8378  1.293254 -0.6534968 0.7218311 2
8379  1.293254 -0.6534968 0.7218311 2
8380  1.293254 -0.6534968 0.7218311 2
8381  1.293254 -0.6534968 0.7218311 1
8382  1.293254 -0.6534968 0.7218311 2
8383  1.293254 -0.6534968 0.7218311 2
8384  1.293254 -0.6534968 0.7218311 2
8385  1.293254 -0.6534968 0.7218311 1
8386  1.293254 -0.6534968 0.7218311 3
8387  1.293254 -0.6534968 0.7218311 2
8388  1.293254 -0.6534968 0.7218311 3
8389  1.293254 -0.6534968 0.7218311 2
8390  1.293254 -0.6534968 0.7218311 1
8391  1.293254 -0.6534968 0.7218311 1
8392  1.293254 -0.6534968 0.7218311 2
8393  1.293254 -0.6534968 0.7218311 1
8394  1.293254 -0.6534968 0.7218311 1
8395  1.293254 -0.6534968 0.7218311 3
8396  1.293254 -0.6534968 0.7218311 1
8397  1.293254 -0.6534968 0.7218311 2
8398  1.293254 -0.6534968 0.7218311 3
8399  1.293254 -0.6534968 0.7218311 2
8400  1.293254 -0.6534968 0.7218311 3
8401  1.293254 -0.6534968 0.7218311 3
8402  1.293254 -0.6534968 0.7218311 1
8403  1.293254 -0.6534968 0.7218311 1
8404  1.293254 -0.6534968 0.7218311 3
8405  1.293254 -0.6534968 0.7218311 1
8406  1.293254 -0.6534968 0.7218311 2
8407  1.293254 -0.6534968 0.7218311 2
8408  1.293254 -0.6534968 0.7218311 3
8409  1.293254 -0.6534968 0.7218311 1
8410  1.293254 -0.6534968 0.7218311 3
8411  1.293254 -0.6534968 0.7218311 1
8412  1.293254 -0.6534968 0.7218311 3
8413  1.293254 -0.6534968 0.7218311 2
8414  1.293254 -0.6534968 0.7218311 3
8415  1.293254 -0.6534968 0.7218311 2
8416  1.293254 -0.6534968 0.7218311 1
8417  1.293254 -0.6534968 0.7218311 3
8418  1.293254 -0.6534968 0.7218311 3
8419  1.293254 -0.6534968 0.7218311 1
8420  1.293254 -0.6534968 0.7218311 1
8421  1.293254 -0.6534968 0.7218311 1
8422  1.293254 -0.6534968 0.7218311 1
8423  1.293254 -0.6534968 0.7218311 3
8424  1.293254 -0.6534968 0.7218311 3
8425  1.293254 -0.6534968 0.7218311 2
8426  1.293254 -0.6534968 0.7218311 3
8427  1.293254 -0.6534968 0.7218311 3
8428  1.293254 -0.6534968 0.7218311 1
8429  1.293254 -0.6534968 0.7218311 1
8430  1.293254 -0.6534968 0.7218311 3
8431  1.293254 -0.6534968 0.7218311 2
8432  1.293254 -0.6534968 0.7218311 3
8433  1.293254 -0.6534968 0.7218311 3
8434  1.293254 -0.6534968 0.7218311 1
8435  1.293254 -0.6534968 0.7218311 3
8436  1.293254 -0.6534968 0.7218311 3
8437  1.293254 -0.6534968 0.7218311 3
8438  1.293254 -0.6534968 0.7218311 1
8439  1.293254 -0.6534968 0.7218311 1
8440  1.293254 -0.6534968 0.7218311 2
8441  1.293254 -0.6534968 0.7218311 1
8442  1.293254 -0.6534968 0.7218311 2
8443  1.293254 -0.6534968 0.7218311 2
8444  1.293254 -0.6534968 0.7218311 2
8445  1.293254 -0.6534968 0.7218311 3
8446  1.293254 -0.6534968 0.7218311 1
8447  1.293254 -0.6534968 0.7218311 2
8448  1.293254 -0.6534968 0.7218311 2
8449  1.293254 -0.6534968 0.7218311 3
8450  1.293254 -0.6534968 0.7218311 2
8451  1.293254 -0.6534968 0.7218311 1
8452  1.293254 -0.6534968 0.7218311 1
8453  1.293254 -0.6534968 0.7218311 3
8454  1.293254 -0.6534968 0.7218311 3
8455  1.293254 -0.6534968 0.7218311 3
8456  1.293254 -0.6534968 0.7218311 2
8457  1.293254 -0.6534968 0.7218311 3
8458  1.293254 -0.6534968 0.7218311 2
8459  1.293254 -0.6534968 0.7218311 2
8460  1.293254 -0.6534968 0.7218311 3
8461  1.293254 -0.6534968 0.7218311 1
8462  1.293254 -0.6534968 0.7218311 3
8463  1.293254 -0.6534968 0.7218311 1
8464  1.293254 -0.6534968 0.7218311 2
8465  1.293254 -0.6534968 0.7218311 3
8466  1.293254 -0.6534968 0.7218311 3
8467  1.293254 -0.6534968 0.7218311 2
8468  1.293254 -0.6534968 0.7218311 2
8469  1.293254 -0.6534968 0.7218311 1
8470  1.293254 -0.6534968 0.7218311 3
8471  1.293254 -0.6534968 0.7218311 1
8472  1.293254 -0.6534968 0.7218311 2
8473  1.293254 -0.6534968 0.7218311 1
8474  1.293254 -0.6534968 0.7218311 1
8475  1.293254 -0.6534968 0.7218311 3
8476  1.293254 -0.6534968 0.7218311 1
8477  1.293254 -0.6534968 0.7218311 1
8478  1.293254 -0.6534968 0.7218311 1
8479  1.293254 -0.6534968 0.7218311 2
8480  1.293254 -0.6534968 0.7218311 2
8481  1.293254 -0.6534968 0.7218311 1
8482  1.293254 -0.6534968 0.7218311 3
8483  1.293254 -0.6534968 0.7218311 1
8484  1.293254 -0.6534968 0.7218311 1
8485  1.293254 -0.6534968 0.7218311 3
8486  1.293254 -0.6534968 0.7218311 2
8487  1.293254 -0.6534968 0.7218311 2
8488  1.293254 -0.6534968 0.7218311 2
8489  1.293254 -0.6534968 0.7218311 3
8490  1.293254 -0.6534968 0.7218311 2
8491  1.293254 -0.6534968 0.7218311 1
8492  1.293254 -0.6534968 0.7218311 2
8493  1.293254 -0.6534968 0.7218311 1
8494  1.293254 -0.6534968 0.7218311 1
8495  1.293254 -0.6534968 0.7218311 2
8496  1.293254 -0.6534968 0.7218311 3
8497  1.293254 -0.6534968 0.7218311 2
8498  1.293254 -0.6534968 0.7218311 3
8499  1.293254 -0.6534968 0.7218311 1
8500  1.293254 -0.6534968 0.7218311 2
8501  1.293254 -0.6534968 0.7218311 2
8502  1.293254 -0.6534968 0.7218311 1
8503  1.293254 -0.6534968 0.7218311 3
8504  1.293254 -0.6534968 0.7218311 3
8505  1.293254 -0.6534968 0.7218311 3
8506  1.293254 -0.6534968 0.7218311 3
8507  1.293254 -0.6534968 0.7218311 3
8508  1.293254 -0.6534968 0.7218311 2
8509  1.293254 -0.6534968 0.7218311 3
8510  1.293254 -0.6534968 0.7218311 1
8511  1.293254 -0.6534968 0.7218311 3
8512  1.293254 -0.6534968 0.7218311 2
8513  1.293254 -0.6534968 0.7218311 2
8514  1.293254 -0.6534968 0.7218311 3
8515  1.293254 -0.6534968 0.7218311 1
8516  1.293254 -0.6534968 0.7218311 3
8517  1.293254 -0.6534968 0.7218311 2
8518  1.293254 -0.6534968 0.7218311 1
8519  1.293254 -0.6534968 0.7218311 3
8520  1.293254 -0.6534968 0.7218311 3
8521  1.293254 -0.6534968 0.7218311 2
8522  1.293254 -0.6534968 0.7218311 2
8523  1.293254 -0.6534968 0.7218311 2
8524  1.293254 -0.6534968 0.7218311 1
8525  1.293254 -0.6534968 0.7218311 2
8526  1.293254 -0.6534968 0.7218311 3
8527  1.293254 -0.6534968 0.7218311 3
8528  1.293254 -0.6534968 0.7218311 2
8529  1.293254 -0.6534968 0.7218311 1
8530  1.293254 -0.6534968 0.7218311 1
8531  1.293254 -0.6534968 0.7218311 1
8532  1.293254 -0.6534968 0.7218311 2
8533  1.293254 -0.6534968 0.7218311 3
8534  1.293254 -0.6534968 0.7218311 2
8535  1.293254 -0.6534968 0.7218311 1
8536  1.293254 -0.6534968 0.7218311 3
8537  1.293254 -0.6534968 0.7218311 2
8538  1.293254 -0.6534968 0.7218311 2
8539  1.293254 -0.6534968 0.7218311 2
8540  1.293254 -0.6534968 0.7218311 3
8541  1.293254 -0.6534968 0.7218311 1
8542  1.293254 -0.6534968 0.7218311 2
8543  1.293254 -0.6534968 0.7218311 2
8544  1.293254 -0.6534968 0.7218311 3
8545  1.293254 -0.6534968 0.7218311 1
8546  1.293254 -0.6534968 0.7218311 1
8547  1.293254 -0.6534968 0.7218311 1
8548  1.293254 -0.6534968 0.7218311 1
8549  1.293254 -0.6534968 0.7218311 3
8550  1.293254 -0.6534968 0.7218311 1
8551  1.293254 -0.6534968 0.7218311 1
8552  1.293254 -0.6534968 0.7218311 1
8553  1.293254 -0.6534968 0.7218311 2
8554  1.293254 -0.6534968 0.7218311 1
8555  1.293254 -0.6534968 0.7218311 1
8556  1.293254 -0.6534968 0.7218311 3
8557  1.293254 -0.6534968 0.7218311 2
8558  1.293254 -0.6534968 0.7218311 1
8559  1.293254 -0.6534968 0.7218311 3
8560  1.293254 -0.6534968 0.7218311 1
8561  1.293254 -0.6534968 0.7218311 3
8562  1.293254 -0.6534968 0.7218311 1
8563  1.293254 -0.6534968 0.7218311 3
8564  1.293254 -0.6534968 0.7218311 1
8565  1.293254 -0.6534968 0.7218311 2
8566  1.293254 -0.6534968 0.7218311 1
8567  1.293254 -0.6534968 0.7218311 2
8568  1.293254 -0.6534968 0.7218311 2
8569  1.293254 -0.6534968 0.7218311 2
8570  1.293254 -0.6534968 0.7218311 3
8571  1.293254 -0.6534968 0.7218311 3
8572  1.293254 -0.6534968 0.7218311 2
8573  1.293254 -0.6534968 0.7218311 1
8574  1.293254 -0.6534968 0.7218311 1
8575  1.293254 -0.6534968 0.7218311 3
8576  1.293254 -0.6534968 0.7218311 3
8577  1.293254 -0.6534968 0.7218311 3
8578  1.293254 -0.6534968 0.7218311 2
8579  1.293254 -0.6534968 0.7218311 1
8580  1.293254 -0.6534968 0.7218311 1
8581  1.293254 -0.6534968 0.7218311 2
8582  1.293254 -0.6534968 0.7218311 1
8583  1.293254 -0.6534968 0.7218311 2
8584  1.293254 -0.6534968 0.7218311 3
8585  1.293254 -0.6534968 0.7218311 3
8586  1.293254 -0.6534968 0.7218311 2
8587  1.293254 -0.6534968 0.7218311 1
8588  1.293254 -0.6534968 0.7218311 3
8589  1.293254 -0.6534968 0.7218311 1
8590  1.293254 -0.6534968 0.7218311 3
8591  1.293254 -0.6534968 0.7218311 1
8592  1.293254 -0.6534968 0.7218311 1
8593  1.293254 -0.6534968 0.7218311 1
8594  1.293254 -0.6534968 0.7218311 2
8595  1.293254 -0.6534968 0.7218311 3
8596  1.293254 -0.6534968 0.7218311 3
8597  1.293254 -0.6534968 0.7218311 3
8598  1.293254 -0.6534968 0.7218311 3
8599  1.293254 -0.6534968 0.7218311 2
8600  1.293254 -0.6534968 0.7218311 2
8601  1.293254 -0.6534968 0.7218311 2
8602  1.293254 -0.6534968 0.7218311 1
8603  1.293254 -0.6534968 0.7218311 2
8604  1.293254 -0.6534968 0.7218311 3
8605  1.293254 -0.6534968 0.7218311 2
8606  1.293254 -0.6534968 0.7218311 1
8607  1.293254 -0.6534968 0.7218311 2
8608  1.293254 -0.6534968 0.7218311 2
8609  1.293254 -0.6534968 0.7218311 1
8610  1.293254 -0.6534968 0.7218311 1
8611  1.293254 -0.6534968 0.7218311 3
8612  1.293254 -0.6534968 0.7218311 1
8613  1.293254 -0.6534968 0.7218311 3
8614  1.293254 -0.6534968 0.7218311 3
8615  1.293254 -0.6534968 0.7218311 2
8616  1.293254 -0.6534968 0.7218311 3
8617  1.293254 -0.6534968 0.7218311 1
8618  1.293254 -0.6534968 0.7218311 3
8619  1.293254 -0.6534968 0.7218311 2
8620  1.293254 -0.6534968 0.7218311 2
8621  1.293254 -0.6534968 0.7218311 1
8622  1.293254 -0.6534968 0.7218311 2
8623  1.293254 -0.6534968 0.7218311 1
8624  1.293254 -0.6534968 0.7218311 3
8625  1.293254 -0.6534968 0.7218311 1
8626  1.293254 -0.6534968 0.7218311 1
8627  1.293254 -0.6534968 0.7218311 2
8628  1.293254 -0.6534968 0.7218311 1
8629  1.293254 -0.6534968 0.7218311 1
8630  1.293254 -0.6534968 0.7218311 3
8631  1.293254 -0.6534968 0.7218311 3
8632  1.293254 -0.6534968 0.7218311 2
8633  1.293254 -0.6534968 0.7218311 3
8634  1.293254 -0.6534968 0.7218311 1
8635  1.293254 -0.6534968 0.7218311 3
8636  1.293254 -0.6534968 0.7218311 1
8637  1.293254 -0.6534968 0.7218311 3
8638  1.293254 -0.6534968 0.7218311 3
8639  1.293254 -0.6534968 0.7218311 2
8640  1.293254 -0.6534968 0.7218311 1
8641  1.293254 -0.6534968 0.7218311 1
8642  1.293254 -0.6534968 0.7218311 1
8643  1.293254 -0.6534968 0.7218311 3
8644  1.293254 -0.6534968 0.7218311 3
8645  1.293254 -0.6534968 0.7218311 3
8646  1.293254 -0.6534968 0.7218311 3
8647  1.293254 -0.6534968 0.7218311 1
8648  1.293254 -0.6534968 0.7218311 3
8649  1.293254 -0.6534968 0.7218311 3
8650  1.293254 -0.6534968 0.7218311 2
8651  1.293254 -0.6534968 0.7218311 1
8652  1.293254 -0.6534968 0.7218311 1
8653  1.293254 -0.6534968 0.7218311 2
8654  1.293254 -0.6534968 0.7218311 2
8655  1.293254 -0.6534968 0.7218311 1
8656  1.293254 -0.6534968 0.7218311 1
8657  1.293254 -0.6534968 0.7218311 3
8658  1.293254 -0.6534968 0.7218311 2
8659  1.293254 -0.6534968 0.7218311 3
8660  1.293254 -0.6534968 0.7218311 2
8661  1.293254 -0.6534968 0.7218311 1
8662  1.293254 -0.6534968 0.7218311 3
8663  1.293254 -0.6534968 0.7218311 1
8664  1.293254 -0.6534968 0.7218311 2
8665  1.293254 -0.6534968 0.7218311 3
8666  1.293254 -0.6534968 0.7218311 1
8667  1.293254 -0.6534968 0.7218311 2
8668  1.293254 -0.6534968 0.7218311 2
8669  1.293254 -0.6534968 0.7218311 1
8670  1.293254 -0.6534968 0.7218311 3
8671  1.293254 -0.6534968 0.7218311 2
8672  1.293254 -0.6534968 0.7218311 3
8673  1.293254 -0.6534968 0.7218311 2
8674  1.293254 -0.6534968 0.7218311 2
8675  1.293254 -0.6534968 0.7218311 3
8676  1.293254 -0.6534968 0.7218311 1
8677  1.293254 -0.6534968 0.7218311 2
8678  1.293254 -0.6534968 0.7218311 2
8679  1.293254 -0.6534968 0.7218311 3
8680  1.293254 -0.6534968 0.7218311 2
8681  1.293254 -0.6534968 0.7218311 3
8682  1.293254 -0.6534968 0.7218311 2
8683  1.293254 -0.6534968 0.7218311 2
8684  1.293254 -0.6534968 0.7218311 2
8685  1.293254 -0.6534968 0.7218311 1
8686  1.293254 -0.6534968 0.7218311 1
8687  1.293254 -0.6534968 0.7218311 1
8688  1.293254 -0.6534968 0.7218311 2
8689  1.293254 -0.6534968 0.7218311 2
8690  1.293254 -0.6534968 0.7218311 2
8691  1.293254 -0.6534968 0.7218311 1
8692  1.293254 -0.6534968 0.7218311 3
8693  1.293254 -0.6534968 0.7218311 1
8694  1.293254 -0.6534968 0.7218311 1
8695  1.293254 -0.6534968 0.7218311 1
8696  1.293254 -0.6534968 0.7218311 1
8697  1.293254 -0.6534968 0.7218311 2
8698  1.293254 -0.6534968 0.7218311 2
8699  1.293254 -0.6534968 0.7218311 3
8700  1.293254 -0.6534968 0.7218311 3
8701  1.293254 -0.6534968 0.7218311 2
8702  1.293254 -0.6534968 0.7218311 1
8703  1.293254 -0.6534968 0.7218311 1
8704  1.293254 -0.6534968 0.7218311 2
8705  1.293254 -0.6534968 0.7218311 3
8706  1.293254 -0.6534968 0.7218311 1
8707  1.293254 -0.6534968 0.7218311 2
8708  1.293254 -0.6534968 0.7218311 3
8709  1.293254 -0.6534968 0.7218311 1
8710  1.293254 -0.6534968 0.7218311 3
8711  1.293254 -0.6534968 0.7218311 3
8712  1.293254 -0.6534968 0.7218311 2
8713  1.293254 -0.6534968 0.7218311 2
8714  1.293254 -0.6534968 0.7218311 3
8715  1.293254 -0.6534968 0.7218311 1
8716  1.293254 -0.6534968 0.7218311 2
8717  1.293254 -0.6534968 0.7218311 2
8718  1.293254 -0.6534968 0.7218311 1
8719  1.293254 -0.6534968 0.7218311 3
8720  1.293254 -0.6534968 0.7218311 1
8721  1.293254 -0.6534968 0.7218311 3
8722  1.293254 -0.6534968 0.7218311 3
8723  1.293254 -0.6534968 0.7218311 1
8724  1.293254 -0.6534968 0.7218311 3
8725  1.293254 -0.6534968 0.7218311 2
8726  1.293254 -0.6534968 0.7218311 3
8727  1.293254 -0.6534968 0.7218311 3
8728  1.293254 -0.6534968 0.7218311 3
8729  1.293254 -0.6534968 0.7218311 3
8730  1.293254 -0.6534968 0.7218311 2
8731  1.293254 -0.6534968 0.7218311 3
8732  1.293254 -0.6534968 0.7218311 2
8733  1.293254 -0.6534968 0.7218311 3
8734  1.293254 -0.6534968 0.7218311 1
8735  1.293254 -0.6534968 0.7218311 2
8736  1.293254 -0.6534968 0.7218311 2
8737  1.293254 -0.6534968 0.7218311 3
8738  1.293254 -0.6534968 0.7218311 1
8739  1.293254 -0.6534968 0.7218311 2
8740  1.293254 -0.6534968 0.7218311 2
8741  1.293254 -0.6534968 0.7218311 3
8742  1.293254 -0.6534968 0.7218311 1
8743  1.293254 -0.6534968 0.7218311 3
8744  1.293254 -0.6534968 0.7218311 2
8745  1.293254 -0.6534968 0.7218311 3
8746  1.293254 -0.6534968 0.7218311 1
8747  1.293254 -0.6534968 0.7218311 3
8748  1.293254 -0.6534968 0.7218311 2
8749  1.293254 -0.6534968 0.7218311 2
8750  1.293254 -0.6534968 0.7218311 3
8751  1.293254 -0.6534968 0.7218311 3
8752  1.293254 -0.6534968 0.7218311 1
8753  1.293254 -0.6534968 0.7218311 3
8754  1.293254 -0.6534968 0.7218311 1
8755  1.293254 -0.6534968 0.7218311 1
8756  1.293254 -0.6534968 0.7218311 1
8757  1.293254 -0.6534968 0.7218311 2
8758  1.293254 -0.6534968 0.7218311 3
8759  1.293254 -0.6534968 0.7218311 1
8760  1.293254 -0.6534968 0.7218311 3
8761  1.293254 -0.6534968 0.7218311 1
8762  1.293254 -0.6534968 0.7218311 3
8763  1.293254 -0.6534968 0.7218311 2
8764  1.293254 -0.6534968 0.7218311 2
8765  1.293254 -0.6534968 0.7218311 3
8766  1.293254 -0.6534968 0.7218311 1
8767  1.293254 -0.6534968 0.7218311 2
8768  1.293254 -0.6534968 0.7218311 2
8769  1.293254 -0.6534968 0.7218311 1
8770  1.293254 -0.6534968 0.7218311 3
8771  1.293254 -0.6534968 0.7218311 3
8772  1.293254 -0.6534968 0.7218311 3
8773  1.293254 -0.6534968 0.7218311 3
8774  1.293254 -0.6534968 0.7218311 3
8775  1.293254 -0.6534968 0.7218311 1
8776  1.293254 -0.6534968 0.7218311 2
8777  1.293254 -0.6534968 0.7218311 1
8778  1.293254 -0.6534968 0.7218311 3
8779  1.293254 -0.6534968 0.7218311 2
8780  1.293254 -0.6534968 0.7218311 2
8781  1.293254 -0.6534968 0.7218311 3
8782  1.293254 -0.6534968 0.7218311 2
8783  1.293254 -0.6534968 0.7218311 3
8784  1.293254 -0.6534968 0.7218311 2
8785  1.293254 -0.6534968 0.7218311 1
8786  1.293254 -0.6534968 0.7218311 1
8787  1.293254 -0.6534968 0.7218311 3
8788  1.293254 -0.6534968 0.7218311 3
8789  1.293254 -0.6534968 0.7218311 1
8790  1.293254 -0.6534968 0.7218311 3
8791  1.293254 -0.6534968 0.7218311 1
8792  1.293254 -0.6534968 0.7218311 1
8793  1.293254 -0.6534968 0.7218311 3
8794  1.293254 -0.6534968 0.7218311 2
8795  1.293254 -0.6534968 0.7218311 2
8796  1.293254 -0.6534968 0.7218311 1
8797  1.293254 -0.6534968 0.7218311 1
8798  1.293254 -0.6534968 0.7218311 2
8799  1.293254 -0.6534968 0.7218311 3
8800  1.293254 -0.6534968 0.7218311 2
8801  1.293254 -0.6534968 0.7218311 2
8802  1.293254 -0.6534968 0.7218311 3
8803  1.293254 -0.6534968 0.7218311 2
8804  1.293254 -0.6534968 0.7218311 1
8805  1.293254 -0.6534968 0.7218311 1
8806  1.293254 -0.6534968 0.7218311 2
8807  1.293254 -0.6534968 0.7218311 3
8808  1.293254 -0.6534968 0.7218311 1
8809  1.293254 -0.6534968 0.7218311 3
8810  1.293254 -0.6534968 0.7218311 2
8811  1.293254 -0.6534968 0.7218311 3
8812  1.293254 -0.6534968 0.7218311 2
8813  1.293254 -0.6534968 0.7218311 1
8814  1.293254 -0.6534968 0.7218311 3
8815  1.293254 -0.6534968 0.7218311 3
8816  1.293254 -0.6534968 0.7218311 3
8817  1.293254 -0.6534968 0.7218311 1
8818  1.293254 -0.6534968 0.7218311 2
8819  1.293254 -0.6534968 0.7218311 3
8820  1.293254 -0.6534968 0.7218311 3
8821  1.293254 -0.6534968 0.7218311 3
8822  1.293254 -0.6534968 0.7218311 1
8823  1.293254 -0.6534968 0.7218311 2
8824  1.293254 -0.6534968 0.7218311 2
8825  1.293254 -0.6534968 0.7218311 1
8826  1.293254 -0.6534968 0.7218311 2
8827  1.293254 -0.6534968 0.7218311 2
8828  1.293254 -0.6534968 0.7218311 3
8829  1.293254 -0.6534968 0.7218311 2
8830  1.293254 -0.6534968 0.7218311 1
8831  1.293254 -0.6534968 0.7218311 2
8832  1.293254 -0.6534968 0.7218311 3
8833  1.293254 -0.6534968 0.7218311 1
8834  1.293254 -0.6534968 0.7218311 2
8835  1.293254 -0.6534968 0.7218311 1
8836  1.293254 -0.6534968 0.7218311 2
8837  1.293254 -0.6534968 0.7218311 3
8838  1.293254 -0.6534968 0.7218311 1
8839  1.293254 -0.6534968 0.7218311 3
8840  1.293254 -0.6534968 0.7218311 2
8841  1.293254 -0.6534968 0.7218311 3
8842  1.293254 -0.6534968 0.7218311 1
8843  1.293254 -0.6534968 0.7218311 1
8844  1.293254 -0.6534968 0.7218311 3
8845  1.293254 -0.6534968 0.7218311 2
8846  1.293254 -0.6534968 0.7218311 1
8847  1.293254 -0.6534968 0.7218311 1
8848  1.293254 -0.6534968 0.7218311 2
8849  1.293254 -0.6534968 0.7218311 2
8850  1.293254 -0.6534968 0.7218311 2
8851  1.293254 -0.6534968 0.7218311 1
8852  1.293254 -0.6534968 0.7218311 3
8853  1.293254 -0.6534968 0.7218311 2
8854  1.293254 -0.6534968 0.7218311 3
8855  1.293254 -0.6534968 0.7218311 1
8856  1.293254 -0.6534968 0.7218311 2
8857  1.293254 -0.6534968 0.7218311 2
8858  1.293254 -0.6534968 0.7218311 2
8859  1.293254 -0.6534968 0.7218311 1
8860  1.293254 -0.6534968 0.7218311 3
8861  1.293254 -0.6534968 0.7218311 1
8862  1.293254 -0.6534968 0.7218311 2
8863  1.293254 -0.6534968 0.7218311 1
8864  1.293254 -0.6534968 0.7218311 2
8865  1.293254 -0.6534968 0.7218311 2
8866  1.293254 -0.6534968 0.7218311 3
8867  1.293254 -0.6534968 0.7218311 3
8868  1.293254 -0.6534968 0.7218311 1
8869  1.293254 -0.6534968 0.7218311 2
8870  1.293254 -0.6534968 0.7218311 3
8871  1.293254 -0.6534968 0.7218311 2
8872  1.293254 -0.6534968 0.7218311 1
8873  1.293254 -0.6534968 0.7218311 2
8874  1.293254 -0.6534968 0.7218311 2
8875  1.293254 -0.6534968 0.7218311 1
8876  1.293254 -0.6534968 0.7218311 3
8877  1.293254 -0.6534968 0.7218311 3
8878  1.293254 -0.6534968 0.7218311 2
8879  1.293254 -0.6534968 0.7218311 3
8880  1.293254 -0.6534968 0.7218311 3
8881  1.293254 -0.6534968 0.7218311 3
8882  1.293254 -0.6534968 0.7218311 1
8883  1.293254 -0.6534968 0.7218311 2
8884  1.293254 -0.6534968 0.7218311 3
8885  1.293254 -0.6534968 0.7218311 3
8886  1.293254 -0.6534968 0.7218311 3
8887  1.293254 -0.6534968 0.7218311 2
8888  1.293254 -0.6534968 0.7218311 2
8889  1.293254 -0.6534968 0.7218311 2
8890  1.293254 -0.6534968 0.7218311 1
8891  1.293254 -0.6534968 0.7218311 2
8892  1.293254 -0.6534968 0.7218311 3
8893  1.293254 -0.6534968 0.7218311 3
8894  1.293254 -0.6534968 0.7218311 3
8895  1.293254 -0.6534968 0.7218311 1
8896  1.293254 -0.6534968 0.7218311 3
8897  1.293254 -0.6534968 0.7218311 2
8898  1.293254 -0.6534968 0.7218311 3
8899  1.293254 -0.6534968 0.7218311 3
8900  1.293254 -0.6534968 0.7218311 3
8901  1.293254 -0.6534968 0.7218311 2
8902  1.293254 -0.6534968 0.7218311 2
8903  1.293254 -0.6534968 0.7218311 2
8904  1.293254 -0.6534968 0.7218311 2
8905  1.293254 -0.6534968 0.7218311 1
8906  1.293254 -0.6534968 0.7218311 3
8907  1.293254 -0.6534968 0.7218311 2
8908  1.293254 -0.6534968 0.7218311 1
8909  1.293254 -0.6534968 0.7218311 2
8910  1.293254 -0.6534968 0.7218311 3
8911  1.293254 -0.6534968 0.7218311 3
8912  1.293254 -0.6534968 0.7218311 2
8913  1.293254 -0.6534968 0.7218311 1
8914  1.293254 -0.6534968 0.7218311 2
8915  1.293254 -0.6534968 0.7218311 1
8916  1.293254 -0.6534968 0.7218311 2
8917  1.293254 -0.6534968 0.7218311 1
8918  1.293254 -0.6534968 0.7218311 1
8919  1.293254 -0.6534968 0.7218311 1
8920  1.293254 -0.6534968 0.7218311 2
8921  1.293254 -0.6534968 0.7218311 1
8922  1.293254 -0.6534968 0.7218311 3
8923  1.293254 -0.6534968 0.7218311 3
8924  1.293254 -0.6534968 0.7218311 3
8925  1.293254 -0.6534968 0.7218311 1
8926  1.293254 -0.6534968 0.7218311 1
8927  1.293254 -0.6534968 0.7218311 1
8928  1.293254 -0.6534968 0.7218311 1
8929  1.293254 -0.6534968 0.7218311 1
8930  1.293254 -0.6534968 0.7218311 3
8931  1.293254 -0.6534968 0.7218311 1
8932  1.293254 -0.6534968 0.7218311 3
8933  1.293254 -0.6534968 0.7218311 1
8934  1.293254 -0.6534968 0.7218311 1
8935  1.293254 -0.6534968 0.7218311 1
8936  1.293254 -0.6534968 0.7218311 2
8937  1.293254 -0.6534968 0.7218311 1
8938  1.293254 -0.6534968 0.7218311 1
8939  1.293254 -0.6534968 0.7218311 1
8940  1.293254 -0.6534968 0.7218311 2
8941  1.293254 -0.6534968 0.7218311 1
8942  1.293254 -0.6534968 0.7218311 1
8943  1.293254 -0.6534968 0.7218311 2
8944  1.293254 -0.6534968 0.7218311 1
8945  1.293254 -0.6534968 0.7218311 1
8946  1.293254 -0.6534968 0.7218311 2
8947  1.293254 -0.6534968 0.7218311 3
8948  1.293254 -0.6534968 0.7218311 3
8949  1.293254 -0.6534968 0.7218311 1
8950  1.293254 -0.6534968 0.7218311 1
8951  1.293254 -0.6534968 0.7218311 3
8952  1.293254 -0.6534968 0.7218311 2
8953  1.293254 -0.6534968 0.7218311 1
8954  1.293254 -0.6534968 0.7218311 3
8955  1.293254 -0.6534968 0.7218311 3
8956  1.293254 -0.6534968 0.7218311 3
8957  1.293254 -0.6534968 0.7218311 2
8958  1.293254 -0.6534968 0.7218311 2
8959  1.293254 -0.6534968 0.7218311 2
8960  1.293254 -0.6534968 0.7218311 3
8961  1.293254 -0.6534968 0.7218311 1
8962  1.293254 -0.6534968 0.7218311 1
8963  1.293254 -0.6534968 0.7218311 2
8964  1.293254 -0.6534968 0.7218311 3
8965  1.293254 -0.6534968 0.7218311 1
8966  1.293254 -0.6534968 0.7218311 3
8967  1.293254 -0.6534968 0.7218311 3
8968  1.293254 -0.6534968 0.7218311 1
8969  1.293254 -0.6534968 0.7218311 1
8970  1.293254 -0.6534968 0.7218311 2
8971  1.293254 -0.6534968 0.7218311 3
8972  1.293254 -0.6534968 0.7218311 3
8973  1.293254 -0.6534968 0.7218311 1
8974  1.293254 -0.6534968 0.7218311 3
8975  1.293254 -0.6534968 0.7218311 1
8976  1.293254 -0.6534968 0.7218311 1
8977  1.293254 -0.6534968 0.7218311 3
8978  1.293254 -0.6534968 0.7218311 2
8979  1.293254 -0.6534968 0.7218311 3
8980  1.293254 -0.6534968 0.7218311 1
8981  1.293254 -0.6534968 0.7218311 3
8982  1.293254 -0.6534968 0.7218311 2
8983  1.293254 -0.6534968 0.7218311 2
8984  1.293254 -0.6534968 0.7218311 1
8985  1.293254 -0.6534968 0.7218311 1
8986  1.293254 -0.6534968 0.7218311 1
8987  1.293254 -0.6534968 0.7218311 2
8988  1.293254 -0.6534968 0.7218311 2
8989  1.293254 -0.6534968 0.7218311 1
8990  1.293254 -0.6534968 0.7218311 2
8991  1.293254 -0.6534968 0.7218311 1
8992  1.293254 -0.6534968 0.7218311 3
8993  1.293254 -0.6534968 0.7218311 2
8994  1.293254 -0.6534968 0.7218311 3
8995  1.293254 -0.6534968 0.7218311 2
8996  1.293254 -0.6534968 0.7218311 3
8997  1.293254 -0.6534968 0.7218311 1
8998  1.293254 -0.6534968 0.7218311 3
8999  1.293254 -0.6534968 0.7218311 2
9000  1.293254 -0.6534968 0.7218311 1
9001  1.293254 -0.6534968 0.7218311 1
9002  1.293254 -0.6534968 0.7218311 1
9003  1.293254 -0.6534968 0.7218311 2
9004  1.293254 -0.6534968 0.7218311 3
9005  1.293254 -0.6534968 0.7218311 3
9006  1.293254 -0.6534968 0.7218311 2
9007  1.293254 -0.6534968 0.7218311 1
9008  1.293254 -0.6534968 0.7218311 3
9009  1.293254 -0.6534968 0.7218311 3
9010  1.293254 -0.6534968 0.7218311 1
9011  1.293254 -0.6534968 0.7218311 1
9012  1.293254 -0.6534968 0.7218311 1
9013  1.293254 -0.6534968 0.7218311 1
9014  1.293254 -0.6534968 0.7218311 2
9015  1.293254 -0.6534968 0.7218311 1
9016  1.293254 -0.6534968 0.7218311 3
9017  1.293254 -0.6534968 0.7218311 2
9018  1.293254 -0.6534968 0.7218311 1
9019  1.293254 -0.6534968 0.7218311 3
9020  1.293254 -0.6534968 0.7218311 1
9021  1.293254 -0.6534968 0.7218311 2
9022  1.293254 -0.6534968 0.7218311 1
9023  1.293254 -0.6534968 0.7218311 3
9024  1.293254 -0.6534968 0.7218311 3
9025  1.293254 -0.6534968 0.7218311 2
9026  1.293254 -0.6534968 0.7218311 1
9027  1.293254 -0.6534968 0.7218311 2
9028  1.293254 -0.6534968 0.7218311 3
9029  1.293254 -0.6534968 0.7218311 2
9030  1.293254 -0.6534968 0.7218311 2
9031  1.293254 -0.6534968 0.7218311 1
9032  1.293254 -0.6534968 0.7218311 3
9033  1.293254 -0.6534968 0.7218311 3
9034  1.293254 -0.6534968 0.7218311 1
9035  1.293254 -0.6534968 0.7218311 2
9036  1.293254 -0.6534968 0.7218311 1
9037  1.293254 -0.6534968 0.7218311 3
9038  1.293254 -0.6534968 0.7218311 1
9039  1.293254 -0.6534968 0.7218311 2
9040  1.293254 -0.6534968 0.7218311 3
9041  1.293254 -0.6534968 0.7218311 1
9042  1.293254 -0.6534968 0.7218311 2
9043  1.293254 -0.6534968 0.7218311 1
9044  1.293254 -0.6534968 0.7218311 3
9045  1.293254 -0.6534968 0.7218311 2
9046  1.293254 -0.6534968 0.7218311 3
9047  1.293254 -0.6534968 0.7218311 1
9048  1.293254 -0.6534968 0.7218311 3
9049  1.293254 -0.6534968 0.7218311 2
9050  1.293254 -0.6534968 0.7218311 3
9051  1.293254 -0.6534968 0.7218311 2
9052  1.293254 -0.6534968 0.7218311 2
9053  1.293254 -0.6534968 0.7218311 1
9054  1.293254 -0.6534968 0.7218311 2
9055  1.293254 -0.6534968 0.7218311 1
9056  1.293254 -0.6534968 0.7218311 1
9057  1.293254 -0.6534968 0.7218311 1
9058  1.293254 -0.6534968 0.7218311 2
9059  1.293254 -0.6534968 0.7218311 1
9060  1.293254 -0.6534968 0.7218311 2
9061  1.293254 -0.6534968 0.7218311 3
9062  1.293254 -0.6534968 0.7218311 3
9063  1.293254 -0.6534968 0.7218311 1
9064  1.293254 -0.6534968 0.7218311 2
9065  1.293254 -0.6534968 0.7218311 3
9066  1.293254 -0.6534968 0.7218311 1
9067  1.293254 -0.6534968 0.7218311 2
9068  1.293254 -0.6534968 0.7218311 3
9069  1.293254 -0.6534968 0.7218311 2
9070  1.293254 -0.6534968 0.7218311 1
9071  1.293254 -0.6534968 0.7218311 1
9072  1.293254 -0.6534968 0.7218311 1
9073  1.293254 -0.6534968 0.7218311 1
9074  1.293254 -0.6534968 0.7218311 1
9075  1.293254 -0.6534968 0.7218311 2
9076  1.293254 -0.6534968 0.7218311 2
9077  1.293254 -0.6534968 0.7218311 3
9078  1.293254 -0.6534968 0.7218311 1
9079  1.293254 -0.6534968 0.7218311 2
9080  1.293254 -0.6534968 0.7218311 3
9081  1.293254 -0.6534968 0.7218311 1
9082  1.293254 -0.6534968 0.7218311 2
9083  1.293254 -0.6534968 0.7218311 1
9084  1.293254 -0.6534968 0.7218311 3
9085  1.293254 -0.6534968 0.7218311 1
9086  1.293254 -0.6534968 0.7218311 1
9087  1.293254 -0.6534968 0.7218311 2
9088  1.293254 -0.6534968 0.7218311 3
9089  1.293254 -0.6534968 0.7218311 3
9090  1.293254 -0.6534968 0.7218311 3
9091  1.293254 -0.6534968 0.7218311 1
9092  1.293254 -0.6534968 0.7218311 3
9093  1.293254 -0.6534968 0.7218311 1
9094  1.293254 -0.6534968 0.7218311 2
9095  1.293254 -0.6534968 0.7218311 2
9096  1.293254 -0.6534968 0.7218311 1
9097  1.293254 -0.6534968 0.7218311 3
9098  1.293254 -0.6534968 0.7218311 3
9099  1.293254 -0.6534968 0.7218311 2
9100  1.293254 -0.6534968 0.7218311 2
9101  1.293254 -0.6534968 0.7218311 3
9102  1.293254 -0.6534968 0.7218311 3
9103  1.293254 -0.6534968 0.7218311 3
9104  1.293254 -0.6534968 0.7218311 2
9105  1.293254 -0.6534968 0.7218311 2
9106  1.293254 -0.6534968 0.7218311 3
9107  1.293254 -0.6534968 0.7218311 2
9108  1.293254 -0.6534968 0.7218311 1
9109  1.293254 -0.6534968 0.7218311 3
9110  1.293254 -0.6534968 0.7218311 2
9111  1.293254 -0.6534968 0.7218311 2
9112  1.293254 -0.6534968 0.7218311 1
9113  1.293254 -0.6534968 0.7218311 1
9114  1.293254 -0.6534968 0.7218311 2
9115  1.293254 -0.6534968 0.7218311 2
9116  1.293254 -0.6534968 0.7218311 3
9117  1.293254 -0.6534968 0.7218311 2
9118  1.293254 -0.6534968 0.7218311 2
9119  1.293254 -0.6534968 0.7218311 3
9120  1.293254 -0.6534968 0.7218311 3
9121  1.293254 -0.6534968 0.7218311 2
9122  1.293254 -0.6534968 0.7218311 1
9123  1.293254 -0.6534968 0.7218311 2
9124  1.293254 -0.6534968 0.7218311 1
9125  1.293254 -0.6534968 0.7218311 1
9126  1.293254 -0.6534968 0.7218311 3
9127  1.293254 -0.6534968 0.7218311 1
9128  1.293254 -0.6534968 0.7218311 2
9129  1.293254 -0.6534968 0.7218311 1
9130  1.293254 -0.6534968 0.7218311 1
9131  1.293254 -0.6534968 0.7218311 2
9132  1.293254 -0.6534968 0.7218311 1
9133  1.293254 -0.6534968 0.7218311 2
9134  1.293254 -0.6534968 0.7218311 2
9135  1.293254 -0.6534968 0.7218311 3
9136  1.293254 -0.6534968 0.7218311 3
9137  1.293254 -0.6534968 0.7218311 2
9138  1.293254 -0.6534968 0.7218311 1
9139  1.293254 -0.6534968 0.7218311 1
9140  1.293254 -0.6534968 0.7218311 2
9141  1.293254 -0.6534968 0.7218311 3
9142  1.293254 -0.6534968 0.7218311 3
9143  1.293254 -0.6534968 0.7218311 3
9144  1.293254 -0.6534968 0.7218311 3
9145  1.293254 -0.6534968 0.7218311 3
9146  1.293254 -0.6534968 0.7218311 2
9147  1.293254 -0.6534968 0.7218311 3
9148  1.293254 -0.6534968 0.7218311 2
9149  1.293254 -0.6534968 0.7218311 3
9150  1.293254 -0.6534968 0.7218311 2
9151  1.293254 -0.6534968 0.7218311 2
9152  1.293254 -0.6534968 0.7218311 1
9153  1.293254 -0.6534968 0.7218311 1
9154  1.293254 -0.6534968 0.7218311 1
9155  1.293254 -0.6534968 0.7218311 3
9156  1.293254 -0.6534968 0.7218311 1
9157  1.293254 -0.6534968 0.7218311 2
9158  1.293254 -0.6534968 0.7218311 1
9159  1.293254 -0.6534968 0.7218311 2
9160  1.293254 -0.6534968 0.7218311 3
9161  1.293254 -0.6534968 0.7218311 1
9162  1.293254 -0.6534968 0.7218311 2
9163  1.293254 -0.6534968 0.7218311 1
9164  1.293254 -0.6534968 0.7218311 2
9165  1.293254 -0.6534968 0.7218311 3
9166  1.293254 -0.6534968 0.7218311 1
9167  1.293254 -0.6534968 0.7218311 2
9168  1.293254 -0.6534968 0.7218311 1
9169  1.293254 -0.6534968 0.7218311 3
9170  1.293254 -0.6534968 0.7218311 2
9171  1.293254 -0.6534968 0.7218311 2
9172  1.293254 -0.6534968 0.7218311 2
9173  1.293254 -0.6534968 0.7218311 3
9174  1.293254 -0.6534968 0.7218311 1
9175  1.293254 -0.6534968 0.7218311 3
9176  1.293254 -0.6534968 0.7218311 3
9177  1.293254 -0.6534968 0.7218311 1
9178  1.293254 -0.6534968 0.7218311 2
9179  1.293254 -0.6534968 0.7218311 2
9180  1.293254 -0.6534968 0.7218311 1
9181  1.293254 -0.6534968 0.7218311 2
9182  1.293254 -0.6534968 0.7218311 3
9183  1.293254 -0.6534968 0.7218311 1
9184  1.293254 -0.6534968 0.7218311 3
9185  1.293254 -0.6534968 0.7218311 1
9186  1.293254 -0.6534968 0.7218311 1
9187  1.293254 -0.6534968 0.7218311 2
9188  1.293254 -0.6534968 0.7218311 2
9189  1.293254 -0.6534968 0.7218311 1
9190  1.293254 -0.6534968 0.7218311 3
9191  1.291776 -0.6737528 0.7232949 3
9192  1.291776 -0.6737528 0.7232949 1
9193  1.291776 -0.6737528 0.7232949 2
9194  1.291776 -0.6737528 0.7232949 1
9195  1.291776 -0.6737528 0.7232949 2
9196  1.291776 -0.6737528 0.7232949 2
9197  1.291776 -0.6737528 0.7232949 3
9198  1.291776 -0.6737528 0.7232949 1
9199  1.291776 -0.6737528 0.7232949 3
9200  1.291776 -0.6737528 0.7232949 2
9201  1.291776 -0.6737528 0.7232949 2
9202  1.291776 -0.6737528 0.7232949 3
9203  1.291776 -0.6737528 0.7232949 3
9204  1.291776 -0.6737528 0.7232949 2
9205  1.291776 -0.6737528 0.7232949 2
9206  1.291776 -0.6737528 0.7232949 2
9207  1.291776 -0.6737528 0.7232949 1
9208  1.291776 -0.6737528 0.7232949 1
9209  1.291776 -0.6737528 0.7232949 1
9210  1.291776 -0.6737528 0.7232949 2
9211  1.291776 -0.6737528 0.7232949 1
9212  1.291776 -0.6737528 0.7232949 1
9213  1.291776 -0.6737528 0.7232949 2
9214  1.291776 -0.6737528 0.7232949 2
9215  1.291776 -0.6737528 0.7232949 3
9216  1.291776 -0.6737528 0.7232949 3
9217  1.291776 -0.6737528 0.7232949 2
9218  1.291776 -0.6737528 0.7232949 3
9219  1.291776 -0.6737528 0.7232949 3
9220  1.291776 -0.6737528 0.7232949 1
9221  1.291776 -0.6737528 0.7232949 3
9222  1.291776 -0.6737528 0.7232949 3
9223  1.291776 -0.6737528 0.7232949 3
9224  1.291776 -0.6737528 0.7232949 3
9225  1.291776 -0.6737528 0.7232949 3
9226  1.291776 -0.6737528 0.7232949 3
9227  1.291776 -0.6737528 0.7232949 2
9228  1.291776 -0.6737528 0.7232949 3
9229  1.291776 -0.6737528 0.7232949 1
9230  1.291776 -0.6737528 0.7232949 1
9231  1.291776 -0.6737528 0.7232949 2
9232  1.291776 -0.6737528 0.7232949 3
9233  1.291776 -0.6737528 0.7232949 1
9234  1.291776 -0.6737528 0.7232949 2
9235  1.291776 -0.6737528 0.7232949 2
9236  1.291776 -0.6737528 0.7232949 1
9237  1.291776 -0.6737528 0.7232949 1
9238  1.291776 -0.6737528 0.7232949 3
9239  1.291776 -0.6737528 0.7232949 2
9240  1.291776 -0.6737528 0.7232949 1
9241  1.291776 -0.6737528 0.7232949 3
9242  1.291776 -0.6737528 0.7232949 3
9243  1.291776 -0.6737528 0.7232949 3
9244  1.291776 -0.6737528 0.7232949 3
9245  1.291776 -0.6737528 0.7232949 2
9246  1.291776 -0.6737528 0.7232949 2
9247  1.291776 -0.6737528 0.7232949 2
9248  1.291776 -0.6737528 0.7232949 1
9249  1.291776 -0.6737528 0.7232949 3
9250  1.291776 -0.6737528 0.7232949 3
9251  1.291776 -0.6737528 0.7232949 3
9252  1.291776 -0.6737528 0.7232949 2
9253  1.291776 -0.6737528 0.7232949 3
9254  1.291776 -0.6737528 0.7232949 3
9255  1.291776 -0.6737528 0.7232949 3
9256  1.291776 -0.6737528 0.7232949 2
9257  1.291776 -0.6737528 0.7232949 1
9258  1.291776 -0.6737528 0.7232949 2
9259  1.291776 -0.6737528 0.7232949 2
9260  1.291776 -0.6737528 0.7232949 2
9261  1.291776 -0.6737528 0.7232949 3
9262  1.291776 -0.6737528 0.7232949 3
9263  1.291776 -0.6737528 0.7232949 1
9264  1.291776 -0.6737528 0.7232949 1
9265  1.291776 -0.6737528 0.7232949 3
9266  1.291776 -0.6737528 0.7232949 2
9267  1.291776 -0.6737528 0.7232949 3
9268  1.291776 -0.6737528 0.7232949 1
9269  1.291776 -0.6737528 0.7232949 2
9270  1.291776 -0.6737528 0.7232949 2
9271  1.291776 -0.6737528 0.7232949 1
9272  1.291776 -0.6737528 0.7232949 2
9273  1.291776 -0.6737528 0.7232949 2
9274  1.291776 -0.6737528 0.7232949 1
9275  1.291776 -0.6737528 0.7232949 2
9276  1.291776 -0.6737528 0.7232949 3
9277  1.291776 -0.6737528 0.7232949 1
9278  1.291776 -0.6737528 0.7232949 3
9279  1.291776 -0.6737528 0.7232949 1
9280  1.291776 -0.6737528 0.7232949 1
9281  1.291776 -0.6737528 0.7232949 2
9282  1.291776 -0.6737528 0.7232949 2
9283  1.291776 -0.6737528 0.7232949 2
9284  1.291776 -0.6737528 0.7232949 2
9285  1.291776 -0.6737528 0.7232949 1
9286  1.291776 -0.6737528 0.7232949 2
9287  1.291776 -0.6737528 0.7232949 3
9288  1.291776 -0.6737528 0.7232949 3
9289  1.291776 -0.6737528 0.7232949 2
9290  1.291776 -0.6737528 0.7232949 3
9291  1.291776 -0.6737528 0.7232949 3
9292  1.291776 -0.6737528 0.7232949 3
9293  1.291776 -0.6737528 0.7232949 3
9294  1.291776 -0.6737528 0.7232949 3
9295  1.291776 -0.6737528 0.7232949 2
9296  1.291776 -0.6737528 0.7232949 3
9297  1.291776 -0.6737528 0.7232949 1
9298  1.291776 -0.6737528 0.7232949 1
9299  1.291776 -0.6737528 0.7232949 3
9300  1.291776 -0.6737528 0.7232949 3
9301  1.291776 -0.6737528 0.7232949 1
9302  1.291776 -0.6737528 0.7232949 1
9303  1.291776 -0.6737528 0.7232949 2
9304  1.291776 -0.6737528 0.7232949 1
9305  1.291776 -0.6737528 0.7232949 1
9306  1.291776 -0.6737528 0.7232949 1
9307  1.291776 -0.6737528 0.7232949 1
9308  1.291776 -0.6737528 0.7232949 2
9309  1.291776 -0.6737528 0.7232949 2
9310  1.291776 -0.6737528 0.7232949 1
9311  1.291776 -0.6737528 0.7232949 2
9312  1.291776 -0.6737528 0.7232949 2
9313  1.291776 -0.6737528 0.7232949 1
9314  1.291776 -0.6737528 0.7232949 2
9315  1.291776 -0.6737528 0.7232949 3
9316  1.291776 -0.6737528 0.7232949 2
9317  1.291776 -0.6737528 0.7232949 2
9318  1.291776 -0.6737528 0.7232949 3
9319  1.291776 -0.6737528 0.7232949 3
9320  1.291776 -0.6737528 0.7232949 1
9321  1.291776 -0.6737528 0.7232949 2
9322  1.291776 -0.6737528 0.7232949 2
9323  1.291776 -0.6737528 0.7232949 1
9324  1.291776 -0.6737528 0.7232949 3
9325  1.291776 -0.6737528 0.7232949 2
9326  1.291776 -0.6737528 0.7232949 1
9327  1.291776 -0.6737528 0.7232949 3
9328  1.291776 -0.6737528 0.7232949 3
9329  1.291776 -0.6737528 0.7232949 3
9330  1.291776 -0.6737528 0.7232949 3
9331  1.291776 -0.6737528 0.7232949 2
9332  1.291776 -0.6737528 0.7232949 2
9333  1.291776 -0.6737528 0.7232949 2
9334  1.291776 -0.6737528 0.7232949 1
9335  1.291776 -0.6737528 0.7232949 2
9336  1.291776 -0.6737528 0.7232949 3
9337  1.291776 -0.6737528 0.7232949 1
9338  1.291776 -0.6737528 0.7232949 3
9339  1.291776 -0.6737528 0.7232949 3
9340  1.291776 -0.6737528 0.7232949 3
9341  1.291776 -0.6737528 0.7232949 1
9342  1.291776 -0.6737528 0.7232949 1
9343  1.291776 -0.6737528 0.7232949 1
9344  1.291776 -0.6737528 0.7232949 2
9345  1.291776 -0.6737528 0.7232949 1
9346  1.291776 -0.6737528 0.7232949 1
9347  1.291776 -0.6737528 0.7232949 2
9348  1.291776 -0.6737528 0.7232949 3
9349  1.291776 -0.6737528 0.7232949 1
9350  1.291776 -0.6737528 0.7232949 3
9351  1.291776 -0.6737528 0.7232949 3
9352  1.291776 -0.6737528 0.7232949 1
9353  1.291776 -0.6737528 0.7232949 3
9354  1.291776 -0.6737528 0.7232949 3
9355  1.291776 -0.6737528 0.7232949 2
9356  1.291776 -0.6737528 0.7232949 2
9357  1.291776 -0.6737528 0.7232949 3
9358  1.291776 -0.6737528 0.7232949 2
9359  1.291776 -0.6737528 0.7232949 2
9360  1.291776 -0.6737528 0.7232949 2
9361  1.291776 -0.6737528 0.7232949 1
9362  1.291776 -0.6737528 0.7232949 3
9363  1.291776 -0.6737528 0.7232949 1
9364  1.291776 -0.6737528 0.7232949 1
9365  1.291776 -0.6737528 0.7232949 3
9366  1.291776 -0.6737528 0.7232949 2
9367  1.291776 -0.6737528 0.7232949 2
9368  1.291776 -0.6737528 0.7232949 3
9369  1.291776 -0.6737528 0.7232949 2
9370  1.291776 -0.6737528 0.7232949 2
9371  1.291776 -0.6737528 0.7232949 3
9372  1.291776 -0.6737528 0.7232949 1
9373  1.291776 -0.6737528 0.7232949 3
9374  1.291776 -0.6737528 0.7232949 2
9375  1.291776 -0.6737528 0.7232949 2
9376  1.291776 -0.6737528 0.7232949 3
9377  1.291776 -0.6737528 0.7232949 2
9378  1.291776 -0.6737528 0.7232949 3
9379  1.291776 -0.6737528 0.7232949 1
9380  1.291776 -0.6737528 0.7232949 1
9381  1.291776 -0.6737528 0.7232949 1
9382  1.291776 -0.6737528 0.7232949 2
9383  1.291776 -0.6737528 0.7232949 2
9384  1.291776 -0.6737528 0.7232949 3
9385  1.291776 -0.6737528 0.7232949 1
9386  1.291776 -0.6737528 0.7232949 1
9387  1.291776 -0.6737528 0.7232949 1
9388  1.291776 -0.6737528 0.7232949 3
9389  1.291776 -0.6737528 0.7232949 1
9390  1.291776 -0.6737528 0.7232949 3
9391  1.291776 -0.6737528 0.7232949 1
9392  1.291776 -0.6737528 0.7232949 1
9393  1.291776 -0.6737528 0.7232949 1
9394  1.291776 -0.6737528 0.7232949 3
9395  1.291776 -0.6737528 0.7232949 1
9396  1.291776 -0.6737528 0.7232949 1
9397  1.291776 -0.6737528 0.7232949 2
9398  1.291776 -0.6737528 0.7232949 1
9399  1.291776 -0.6737528 0.7232949 1
9400  1.291776 -0.6737528 0.7232949 1
9401  1.291776 -0.6737528 0.7232949 1
9402  1.291776 -0.6737528 0.7232949 2
9403  1.291776 -0.6737528 0.7232949 2
9404  1.291776 -0.6737528 0.7232949 1
9405  1.291776 -0.6737528 0.7232949 2
9406  1.291776 -0.6737528 0.7232949 3
9407  1.291776 -0.6737528 0.7232949 3
9408  1.291776 -0.6737528 0.7232949 3
9409  1.291776 -0.6737528 0.7232949 1
9410  1.291776 -0.6737528 0.7232949 2
9411  1.291776 -0.6737528 0.7232949 3
9412  1.291776 -0.6737528 0.7232949 2
9413  1.291776 -0.6737528 0.7232949 2
9414  1.291776 -0.6737528 0.7232949 2
9415  1.291776 -0.6737528 0.7232949 1
9416  1.291776 -0.6737528 0.7232949 3
9417  1.291776 -0.6737528 0.7232949 1
9418  1.291776 -0.6737528 0.7232949 3
9419  1.291776 -0.6737528 0.7232949 3
9420  1.291776 -0.6737528 0.7232949 1
9421  1.291776 -0.6737528 0.7232949 2
9422  1.291776 -0.6737528 0.7232949 2
9423  1.291776 -0.6737528 0.7232949 1
9424  1.291776 -0.6737528 0.7232949 3
9425  1.291776 -0.6737528 0.7232949 1
9426  1.291776 -0.6737528 0.7232949 2
9427  1.291776 -0.6737528 0.7232949 1
9428  1.291776 -0.6737528 0.7232949 1
9429  1.291776 -0.6737528 0.7232949 1
9430  1.291776 -0.6737528 0.7232949 3
9431  1.291776 -0.6737528 0.7232949 2
9432  1.291776 -0.6737528 0.7232949 2
9433  1.291776 -0.6737528 0.7232949 3
9434  1.291776 -0.6737528 0.7232949 1
9435  1.291776 -0.6737528 0.7232949 3
9436  1.291776 -0.6737528 0.7232949 3
9437  1.291776 -0.6737528 0.7232949 1
9438  1.291776 -0.6737528 0.7232949 2
9439  1.291776 -0.6737528 0.7232949 3
9440  1.291776 -0.6737528 0.7232949 2
9441  1.291776 -0.6737528 0.7232949 2
9442  1.291776 -0.6737528 0.7232949 2
9443  1.291776 -0.6737528 0.7232949 3
9444  1.291776 -0.6737528 0.7232949 3
9445  1.291776 -0.6737528 0.7232949 3
9446  1.291776 -0.6737528 0.7232949 2
9447  1.291776 -0.6737528 0.7232949 2
9448  1.291776 -0.6737528 0.7232949 1
9449  1.291776 -0.6737528 0.7232949 3
9450  1.291776 -0.6737528 0.7232949 3
9451  1.291776 -0.6737528 0.7232949 2
9452  1.291776 -0.6737528 0.7232949 2
9453  1.291776 -0.6737528 0.7232949 3
9454  1.291776 -0.6737528 0.7232949 3
9455  1.291776 -0.6737528 0.7232949 2
9456  1.291776 -0.6737528 0.7232949 2
9457  1.291776 -0.6737528 0.7232949 1
9458  1.291776 -0.6737528 0.7232949 3
9459  1.291776 -0.6737528 0.7232949 1
9460  1.291776 -0.6737528 0.7232949 3
9461  1.291776 -0.6737528 0.7232949 1
9462  1.291776 -0.6737528 0.7232949 2
9463  1.291776 -0.6737528 0.7232949 1
9464  1.291776 -0.6737528 0.7232949 3
9465  1.291776 -0.6737528 0.7232949 1
9466  1.291776 -0.6737528 0.7232949 3
9467  1.291776 -0.6737528 0.7232949 3
9468  1.291776 -0.6737528 0.7232949 2
9469  1.291776 -0.6737528 0.7232949 1
9470  1.291776 -0.6737528 0.7232949 2
9471  1.291776 -0.6737528 0.7232949 1
9472  1.291776 -0.6737528 0.7232949 1
9473  1.291776 -0.6737528 0.7232949 1
9474  1.291776 -0.6737528 0.7232949 3
9475  1.291776 -0.6737528 0.7232949 3
9476  1.291776 -0.6737528 0.7232949 2
9477  1.291776 -0.6737528 0.7232949 1
9478  1.291776 -0.6737528 0.7232949 1
9479  1.291776 -0.6737528 0.7232949 1
9480  1.291776 -0.6737528 0.7232949 2
9481  1.291776 -0.6737528 0.7232949 1
9482  1.291776 -0.6737528 0.7232949 3
9483  1.291776 -0.6737528 0.7232949 1
9484  1.291776 -0.6737528 0.7232949 3
9485  1.291776 -0.6737528 0.7232949 1
9486  1.291776 -0.6737528 0.7232949 3
9487  1.291776 -0.6737528 0.7232949 3
9488  1.291776 -0.6737528 0.7232949 3
9489  1.291776 -0.6737528 0.7232949 2
9490  1.291776 -0.6737528 0.7232949 2
9491  1.291776 -0.6737528 0.7232949 3
9492  1.291776 -0.6737528 0.7232949 2
9493  1.291776 -0.6737528 0.7232949 3
9494  1.291776 -0.6737528 0.7232949 2
9495  1.291776 -0.6737528 0.7232949 1
9496  1.291776 -0.6737528 0.7232949 2
9497  1.291776 -0.6737528 0.7232949 1
9498  1.291776 -0.6737528 0.7232949 2
9499  1.291776 -0.6737528 0.7232949 3
9500  1.291776 -0.6737528 0.7232949 2
9501  1.291776 -0.6737528 0.7232949 2
9502  1.291776 -0.6737528 0.7232949 3
9503  1.291776 -0.6737528 0.7232949 1
9504  1.291776 -0.6737528 0.7232949 2
9505  1.291776 -0.6737528 0.7232949 2
9506  1.291776 -0.6737528 0.7232949 2
9507  1.291776 -0.6737528 0.7232949 2
9508  1.291776 -0.6737528 0.7232949 3
9509  1.291776 -0.6737528 0.7232949 3
9510  1.291776 -0.6737528 0.7232949 3
9511  1.291776 -0.6737528 0.7232949 3
9512  1.291776 -0.6737528 0.7232949 1
9513  1.291776 -0.6737528 0.7232949 1
9514  1.291776 -0.6737528 0.7232949 1
9515  1.291776 -0.6737528 0.7232949 1
9516  1.291776 -0.6737528 0.7232949 1
9517  1.291776 -0.6737528 0.7232949 3
9518  1.291776 -0.6737528 0.7232949 1
9519  1.291776 -0.6737528 0.7232949 3
9520  1.291776 -0.6737528 0.7232949 2
9521  1.291776 -0.6737528 0.7232949 3
9522  1.291776 -0.6737528 0.7232949 3
9523  1.291776 -0.6737528 0.7232949 2
9524  1.291776 -0.6737528 0.7232949 1
9525  1.291776 -0.6737528 0.7232949 2
9526  1.291776 -0.6737528 0.7232949 2
9527  1.291776 -0.6737528 0.7232949 1
9528  1.291776 -0.6737528 0.7232949 1
9529  1.291776 -0.6737528 0.7232949 1
9530  1.291776 -0.6737528 0.7232949 2
9531  1.291776 -0.6737528 0.7232949 3
9532  1.291776 -0.6737528 0.7232949 1
9533  1.291776 -0.6737528 0.7232949 1
9534  1.291776 -0.6737528 0.7232949 2
9535  1.291776 -0.6737528 0.7232949 1
9536  1.291776 -0.6737528 0.7232949 1
9537  1.291776 -0.6737528 0.7232949 2
9538  1.291776 -0.6737528 0.7232949 2
9539  1.291776 -0.6737528 0.7232949 1
9540  1.291776 -0.6737528 0.7232949 2
9541  1.291776 -0.6737528 0.7232949 2
9542  1.291776 -0.6737528 0.7232949 1
9543  1.291776 -0.6737528 0.7232949 1
9544  1.291776 -0.6737528 0.7232949 1
9545  1.291776 -0.6737528 0.7232949 3
9546  1.291776 -0.6737528 0.7232949 1
9547  1.291776 -0.6737528 0.7232949 3
9548  1.291776 -0.6737528 0.7232949 1
9549  1.291776 -0.6737528 0.7232949 3
9550  1.291776 -0.6737528 0.7232949 2
9551  1.291776 -0.6737528 0.7232949 1
9552  1.291776 -0.6737528 0.7232949 2
9553  1.291776 -0.6737528 0.7232949 2
9554  1.291776 -0.6737528 0.7232949 1
9555  1.291776 -0.6737528 0.7232949 1
9556  1.291776 -0.6737528 0.7232949 1
9557  1.291776 -0.6737528 0.7232949 1
9558  1.291776 -0.6737528 0.7232949 1
9559  1.291776 -0.6737528 0.7232949 1
9560  1.291776 -0.6737528 0.7232949 3
9561  1.291776 -0.6737528 0.7232949 3
9562  1.291776 -0.6737528 0.7232949 3
9563  1.291776 -0.6737528 0.7232949 1
9564  1.291776 -0.6737528 0.7232949 2
9565  1.291776 -0.6737528 0.7232949 1
9566  1.291776 -0.6737528 0.7232949 3
9567  1.291776 -0.6737528 0.7232949 3
9568  1.291776 -0.6737528 0.7232949 1
9569  1.291776 -0.6737528 0.7232949 3
9570  1.291776 -0.6737528 0.7232949 3
9571  1.291776 -0.6737528 0.7232949 1
9572  1.291776 -0.6737528 0.7232949 3
9573  1.291776 -0.6737528 0.7232949 2
9574  1.291776 -0.6737528 0.7232949 2
9575  1.291776 -0.6737528 0.7232949 2
9576  1.291776 -0.6737528 0.7232949 2
9577  1.291776 -0.6737528 0.7232949 3
9578  1.291776 -0.6737528 0.7232949 1
9579  1.291776 -0.6737528 0.7232949 2
9580  1.291776 -0.6737528 0.7232949 1
9581  1.291776 -0.6737528 0.7232949 3
9582  1.291776 -0.6737528 0.7232949 1
9583  1.291776 -0.6737528 0.7232949 1
9584  1.291776 -0.6737528 0.7232949 1
9585  1.291776 -0.6737528 0.7232949 1
9586  1.291776 -0.6737528 0.7232949 2
9587  1.291776 -0.6737528 0.7232949 1
9588  1.291776 -0.6737528 0.7232949 3
9589  1.291776 -0.6737528 0.7232949 3
9590  1.291776 -0.6737528 0.7232949 1
9591  1.291776 -0.6737528 0.7232949 2
9592  1.291776 -0.6737528 0.7232949 1
9593  1.291776 -0.6737528 0.7232949 1
9594  1.291776 -0.6737528 0.7232949 3
9595  1.291776 -0.6737528 0.7232949 3
9596  1.291776 -0.6737528 0.7232949 3
9597  1.291776 -0.6737528 0.7232949 1
9598  1.291776 -0.6737528 0.7232949 3
9599  1.291776 -0.6737528 0.7232949 2
9600  1.291776 -0.6737528 0.7232949 3
9601  1.291776 -0.6737528 0.7232949 1
9602  1.291776 -0.6737528 0.7232949 1
9603  1.291776 -0.6737528 0.7232949 1
9604  1.291776 -0.6737528 0.7232949 1
9605  1.291776 -0.6737528 0.7232949 2
9606  1.291776 -0.6737528 0.7232949 3
9607  1.291776 -0.6737528 0.7232949 3
9608  1.291776 -0.6737528 0.7232949 3
9609  1.291776 -0.6737528 0.7232949 2
9610  1.291776 -0.6737528 0.7232949 1
9611  1.291776 -0.6737528 0.7232949 1
9612  1.291776 -0.6737528 0.7232949 1
9613  1.291776 -0.6737528 0.7232949 2
9614  1.291776 -0.6737528 0.7232949 2
9615  1.291776 -0.6737528 0.7232949 1
9616  1.291776 -0.6737528 0.7232949 1
9617  1.291776 -0.6737528 0.7232949 3
9618  1.291776 -0.6737528 0.7232949 1
9619  1.291776 -0.6737528 0.7232949 2
9620  1.291776 -0.6737528 0.7232949 2
9621  1.291776 -0.6737528 0.7232949 1
9622  1.291776 -0.6737528 0.7232949 3
9623  1.291776 -0.6737528 0.7232949 3
9624  1.291776 -0.6737528 0.7232949 2
9625  1.291776 -0.6737528 0.7232949 2
9626  1.291776 -0.6737528 0.7232949 1
9627  1.291776 -0.6737528 0.7232949 2
9628  1.291776 -0.6737528 0.7232949 3
9629  1.291776 -0.6737528 0.7232949 1
9630  1.291776 -0.6737528 0.7232949 1
9631  1.291776 -0.6737528 0.7232949 2
9632  1.291776 -0.6737528 0.7232949 2
9633  1.291776 -0.6737528 0.7232949 1
9634  1.291776 -0.6737528 0.7232949 1
9635  1.291776 -0.6737528 0.7232949 2
9636  1.291776 -0.6737528 0.7232949 1
9637  1.291776 -0.6737528 0.7232949 2
9638  1.291776 -0.6737528 0.7232949 3
9639  1.291776 -0.6737528 0.7232949 1
9640  1.291776 -0.6737528 0.7232949 3
9641  1.291776 -0.6737528 0.7232949 1
9642  1.291776 -0.6737528 0.7232949 2
9643  1.291776 -0.6737528 0.7232949 3
9644  1.291776 -0.6737528 0.7232949 3
9645  1.291776 -0.6737528 0.7232949 2
9646  1.291776 -0.6737528 0.7232949 1
9647  1.291776 -0.6737528 0.7232949 2
9648  1.291776 -0.6737528 0.7232949 1
9649  1.291776 -0.6737528 0.7232949 3
9650  1.291776 -0.6737528 0.7232949 3
9651  1.291776 -0.6737528 0.7232949 3
9652  1.291776 -0.6737528 0.7232949 1
9653  1.291776 -0.6737528 0.7232949 2
9654  1.291776 -0.6737528 0.7232949 1
9655  1.291776 -0.6737528 0.7232949 3
9656  1.291776 -0.6737528 0.7232949 2
9657  1.291776 -0.6737528 0.7232949 3
9658  1.291776 -0.6737528 0.7232949 2
9659  1.291776 -0.6737528 0.7232949 2
9660  1.291776 -0.6737528 0.7232949 1
9661  1.291776 -0.6737528 0.7232949 1
9662  1.291776 -0.6737528 0.7232949 2
9663  1.291776 -0.6737528 0.7232949 3
9664  1.291776 -0.6737528 0.7232949 1
9665  1.291776 -0.6737528 0.7232949 2
9666  1.291776 -0.6737528 0.7232949 3
9667  1.291776 -0.6737528 0.7232949 2
9668  1.291776 -0.6737528 0.7232949 1
9669  1.291776 -0.6737528 0.7232949 1
9670  1.291776 -0.6737528 0.7232949 2
9671  1.291776 -0.6737528 0.7232949 2
9672  1.291776 -0.6737528 0.7232949 3
9673  1.291776 -0.6737528 0.7232949 2
9674  1.291776 -0.6737528 0.7232949 1
9675  1.291776 -0.6737528 0.7232949 1
9676  1.291776 -0.6737528 0.7232949 2
9677  1.291776 -0.6737528 0.7232949 2
9678  1.291776 -0.6737528 0.7232949 1
9679  1.291776 -0.6737528 0.7232949 2
9680  1.291776 -0.6737528 0.7232949 1
9681  1.291776 -0.6737528 0.7232949 2
9682  1.291776 -0.6737528 0.7232949 1
9683  1.291776 -0.6737528 0.7232949 1
9684  1.291776 -0.6737528 0.7232949 2
9685  1.291776 -0.6737528 0.7232949 1
9686  1.291776 -0.6737528 0.7232949 1
9687  1.291776 -0.6737528 0.7232949 3
9688  1.291776 -0.6737528 0.7232949 3
9689  1.291776 -0.6737528 0.7232949 2
9690  1.291776 -0.6737528 0.7232949 3
9691  1.291776 -0.6737528 0.7232949 2
9692  1.291776 -0.6737528 0.7232949 1
9693  1.291776 -0.6737528 0.7232949 1
9694  1.291776 -0.6737528 0.7232949 3
9695  1.291776 -0.6737528 0.7232949 2
9696  1.291776 -0.6737528 0.7232949 3
9697  1.291776 -0.6737528 0.7232949 3
9698  1.291776 -0.6737528 0.7232949 3
9699  1.291776 -0.6737528 0.7232949 2
9700  1.291776 -0.6737528 0.7232949 3
9701  1.291776 -0.6737528 0.7232949 1
9702  1.291776 -0.6737528 0.7232949 1
9703  1.291776 -0.6737528 0.7232949 3
9704  1.291776 -0.6737528 0.7232949 1
9705  1.291776 -0.6737528 0.7232949 2
9706  1.291776 -0.6737528 0.7232949 3
9707  1.291776 -0.6737528 0.7232949 3
9708  1.291776 -0.6737528 0.7232949 1
9709  1.291776 -0.6737528 0.7232949 1
9710  1.291776 -0.6737528 0.7232949 3
9711  1.291776 -0.6737528 0.7232949 1
9712  1.291776 -0.6737528 0.7232949 2
9713  1.291776 -0.6737528 0.7232949 1
9714  1.291776 -0.6737528 0.7232949 3
9715  1.291776 -0.6737528 0.7232949 1
9716  1.291776 -0.6737528 0.7232949 3
9717  1.291776 -0.6737528 0.7232949 1
9718  1.291776 -0.6737528 0.7232949 2
9719  1.291776 -0.6737528 0.7232949 1
9720  1.291776 -0.6737528 0.7232949 3
9721  1.291776 -0.6737528 0.7232949 2
9722  1.291776 -0.6737528 0.7232949 1
9723  1.291776 -0.6737528 0.7232949 2
9724  1.291776 -0.6737528 0.7232949 1
9725  1.291776 -0.6737528 0.7232949 3
9726  1.291776 -0.6737528 0.7232949 3
9727  1.291776 -0.6737528 0.7232949 3
9728  1.291776 -0.6737528 0.7232949 1
9729  1.291776 -0.6737528 0.7232949 1
9730  1.291776 -0.6737528 0.7232949 2
9731  1.291776 -0.6737528 0.7232949 1
9732  1.291776 -0.6737528 0.7232949 3
9733  1.291776 -0.6737528 0.7232949 1
9734  1.291776 -0.6737528 0.7232949 2
9735  1.291776 -0.6737528 0.7232949 1
9736  1.291776 -0.6737528 0.7232949 1
9737  1.291776 -0.6737528 0.7232949 2
9738  1.291776 -0.6737528 0.7232949 2
9739  1.291776 -0.6737528 0.7232949 1
9740  1.291776 -0.6737528 0.7232949 2
9741  1.291776 -0.6737528 0.7232949 3
9742  1.291776 -0.6737528 0.7232949 2
9743  1.291776 -0.6737528 0.7232949 1
9744  1.291776 -0.6737528 0.7232949 1
9745  1.291776 -0.6737528 0.7232949 1
9746  1.291776 -0.6737528 0.7232949 1
9747  1.291776 -0.6737528 0.7232949 1
9748  1.291776 -0.6737528 0.7232949 1
9749  1.291776 -0.6737528 0.7232949 1
9750  1.291776 -0.6737528 0.7232949 2
9751  1.291776 -0.6737528 0.7232949 1
9752  1.291776 -0.6737528 0.7232949 2
9753  1.291776 -0.6737528 0.7232949 3
9754  1.291776 -0.6737528 0.7232949 2
9755  1.291776 -0.6737528 0.7232949 3
9756  1.291776 -0.6737528 0.7232949 1
9757  1.291776 -0.6737528 0.7232949 1
9758  1.291776 -0.6737528 0.7232949 1
9759  1.291776 -0.6737528 0.7232949 2
9760  1.291776 -0.6737528 0.7232949 2
9761  1.291776 -0.6737528 0.7232949 2
9762  1.291776 -0.6737528 0.7232949 2
9763  1.291776 -0.6737528 0.7232949 2
9764  1.291776 -0.6737528 0.7232949 1
9765  1.291776 -0.6737528 0.7232949 2
9766  1.291776 -0.6737528 0.7232949 1
9767  1.291776 -0.6737528 0.7232949 1
9768  1.291776 -0.6737528 0.7232949 2
9769  1.291776 -0.6737528 0.7232949 1
9770  1.291776 -0.6737528 0.7232949 3
9771  1.291776 -0.6737528 0.7232949 1
9772  1.291776 -0.6737528 0.7232949 1
9773  1.291776 -0.6737528 0.7232949 3
9774  1.291776 -0.6737528 0.7232949 3
9775  1.291776 -0.6737528 0.7232949 1
9776  1.291776 -0.6737528 0.7232949 3
9777  1.291776 -0.6737528 0.7232949 1
9778  1.291776 -0.6737528 0.7232949 2
9779  1.291776 -0.6737528 0.7232949 3
9780  1.291776 -0.6737528 0.7232949 3
9781  1.291776 -0.6737528 0.7232949 1
9782  1.291776 -0.6737528 0.7232949 3
9783  1.291776 -0.6737528 0.7232949 2
9784  1.291776 -0.6737528 0.7232949 1
9785  1.291776 -0.6737528 0.7232949 2
9786  1.291776 -0.6737528 0.7232949 1
9787  1.291776 -0.6737528 0.7232949 1
9788  1.291776 -0.6737528 0.7232949 1
9789  1.291776 -0.6737528 0.7232949 3
9790  1.291776 -0.6737528 0.7232949 1
9791  1.291776 -0.6737528 0.7232949 2
9792  1.291776 -0.6737528 0.7232949 1
9793  1.291776 -0.6737528 0.7232949 3
9794  1.291776 -0.6737528 0.7232949 1
9795  1.291776 -0.6737528 0.7232949 3
9796  1.291776 -0.6737528 0.7232949 3
9797  1.291776 -0.6737528 0.7232949 1
9798  1.291776 -0.6737528 0.7232949 1
9799  1.291776 -0.6737528 0.7232949 2
9800  1.291776 -0.6737528 0.7232949 3
9801  1.291776 -0.6737528 0.7232949 2
9802  1.291776 -0.6737528 0.7232949 2
9803  1.291776 -0.6737528 0.7232949 3
9804  1.291776 -0.6737528 0.7232949 2
9805  1.291776 -0.6737528 0.7232949 3
9806  1.291776 -0.6737528 0.7232949 2
9807  1.291776 -0.6737528 0.7232949 2
9808  1.291776 -0.6737528 0.7232949 1
9809  1.291776 -0.6737528 0.7232949 1
9810  1.291776 -0.6737528 0.7232949 1
9811  1.291776 -0.6737528 0.7232949 2
9812  1.291776 -0.6737528 0.7232949 1
9813  1.291776 -0.6737528 0.7232949 1
9814  1.291776 -0.6737528 0.7232949 2
9815  1.291776 -0.6737528 0.7232949 1
9816  1.291776 -0.6737528 0.7232949 1
9817  1.291776 -0.6737528 0.7232949 2
9818  1.291776 -0.6737528 0.7232949 2
9819  1.291776 -0.6737528 0.7232949 1
9820  1.291776 -0.6737528 0.7232949 3
9821  1.291776 -0.6737528 0.7232949 3
9822  1.291776 -0.6737528 0.7232949 2
9823  1.291776 -0.6737528 0.7232949 3
9824  1.291776 -0.6737528 0.7232949 2
9825  1.291776 -0.6737528 0.7232949 3
9826  1.291776 -0.6737528 0.7232949 3
9827  1.291776 -0.6737528 0.7232949 1
9828  1.291776 -0.6737528 0.7232949 1
9829  1.291776 -0.6737528 0.7232949 3
9830  1.291776 -0.6737528 0.7232949 1
9831  1.291776 -0.6737528 0.7232949 2
9832  1.291776 -0.6737528 0.7232949 1
9833  1.291776 -0.6737528 0.7232949 3
9834  1.291776 -0.6737528 0.7232949 2
9835  1.291776 -0.6737528 0.7232949 2
9836  1.291776 -0.6737528 0.7232949 2
9837  1.291776 -0.6737528 0.7232949 2
9838  1.291776 -0.6737528 0.7232949 1
9839  1.291776 -0.6737528 0.7232949 1
9840  1.291776 -0.6737528 0.7232949 1
9841  1.291776 -0.6737528 0.7232949 1
9842  1.291776 -0.6737528 0.7232949 2
9843  1.291776 -0.6737528 0.7232949 3
9844  1.291776 -0.6737528 0.7232949 1
9845  1.291776 -0.6737528 0.7232949 2
9846  1.291776 -0.6737528 0.7232949 2
9847  1.291776 -0.6737528 0.7232949 3
9848  1.291776 -0.6737528 0.7232949 1
9849  1.291776 -0.6737528 0.7232949 3
9850  1.291776 -0.6737528 0.7232949 2
9851  1.291776 -0.6737528 0.7232949 1
9852  1.291776 -0.6737528 0.7232949 3
9853  1.291776 -0.6737528 0.7232949 3
9854  1.291776 -0.6737528 0.7232949 1
9855  1.291776 -0.6737528 0.7232949 1
9856  1.291776 -0.6737528 0.7232949 3
9857  1.291776 -0.6737528 0.7232949 2
9858  1.291776 -0.6737528 0.7232949 3
9859  1.291776 -0.6737528 0.7232949 1
9860  1.291776 -0.6737528 0.7232949 3
9861  1.291776 -0.6737528 0.7232949 3
9862  1.291776 -0.6737528 0.7232949 2
9863  1.291776 -0.6737528 0.7232949 3
9864  1.291776 -0.6737528 0.7232949 2
9865  1.291776 -0.6737528 0.7232949 3
9866  1.291776 -0.6737528 0.7232949 1
9867  1.291776 -0.6737528 0.7232949 1
9868  1.291776 -0.6737528 0.7232949 3
9869  1.291776 -0.6737528 0.7232949 3
9870  1.291776 -0.6737528 0.7232949 1
9871  1.291776 -0.6737528 0.7232949 2
9872  1.291776 -0.6737528 0.7232949 2
9873  1.291776 -0.6737528 0.7232949 3
9874  1.291776 -0.6737528 0.7232949 1
9875  1.291776 -0.6737528 0.7232949 3
9876  1.291776 -0.6737528 0.7232949 2
9877  1.291776 -0.6737528 0.7232949 2
9878  1.291776 -0.6737528 0.7232949 2
9879  1.291776 -0.6737528 0.7232949 2
9880  1.291776 -0.6737528 0.7232949 1
9881  1.291776 -0.6737528 0.7232949 1
9882  1.291776 -0.6737528 0.7232949 2
9883  1.291776 -0.6737528 0.7232949 2
9884  1.291776 -0.6737528 0.7232949 2
9885  1.291776 -0.6737528 0.7232949 2
9886  1.291776 -0.6737528 0.7232949 2
9887  1.291776 -0.6737528 0.7232949 1
9888  1.291776 -0.6737528 0.7232949 3
9889  1.291776 -0.6737528 0.7232949 2
9890  1.291776 -0.6737528 0.7232949 3
9891  1.291776 -0.6737528 0.7232949 1
9892  1.291776 -0.6737528 0.7232949 3
9893  1.291776 -0.6737528 0.7232949 3
9894  1.291776 -0.6737528 0.7232949 3
9895  1.291776 -0.6737528 0.7232949 3
9896  1.291776 -0.6737528 0.7232949 3
9897  1.291776 -0.6737528 0.7232949 1
9898  1.291776 -0.6737528 0.7232949 1
9899  1.291776 -0.6737528 0.7232949 3
9900  1.291776 -0.6737528 0.7232949 1
9901  1.291776 -0.6737528 0.7232949 1
9902  1.291776 -0.6737528 0.7232949 1
9903  1.291776 -0.6737528 0.7232949 1
9904  1.291776 -0.6737528 0.7232949 1
9905  1.291776 -0.6737528 0.7232949 2
9906  1.291776 -0.6737528 0.7232949 3
9907  1.291776 -0.6737528 0.7232949 3
9908  1.291776 -0.6737528 0.7232949 2
9909  1.291776 -0.6737528 0.7232949 3
9910  1.291776 -0.6737528 0.7232949 3
9911  1.291776 -0.6737528 0.7232949 2
9912  1.291776 -0.6737528 0.7232949 2
9913  1.291776 -0.6737528 0.7232949 2
9914  1.291776 -0.6737528 0.7232949 2
9915  1.291776 -0.6737528 0.7232949 3
9916  1.291776 -0.6737528 0.7232949 2
9917  1.291776 -0.6737528 0.7232949 2
9918  1.291776 -0.6737528 0.7232949 1
9919  1.291776 -0.6737528 0.7232949 2
9920  1.291776 -0.6737528 0.7232949 1
9921  1.291776 -0.6737528 0.7232949 2
9922  1.291776 -0.6737528 0.7232949 2
9923  1.291776 -0.6737528 0.7232949 2
9924  1.291776 -0.6737528 0.7232949 1
9925  1.291776 -0.6737528 0.7232949 2
9926  1.291776 -0.6737528 0.7232949 3
9927  1.291776 -0.6737528 0.7232949 2
9928  1.291776 -0.6737528 0.7232949 3
9929  1.291776 -0.6737528 0.7232949 2
9930  1.291776 -0.6737528 0.7232949 3
9931  1.291776 -0.6737528 0.7232949 1
9932  1.291776 -0.6737528 0.7232949 2
9933  1.291776 -0.6737528 0.7232949 2
9934  1.291776 -0.6737528 0.7232949 3
9935  1.291776 -0.6737528 0.7232949 1
9936  1.291776 -0.6737528 0.7232949 2
9937  1.291776 -0.6737528 0.7232949 1
9938  1.291776 -0.6737528 0.7232949 2
9939  1.291776 -0.6737528 0.7232949 2
9940  1.291776 -0.6737528 0.7232949 2
9941  1.291776 -0.6737528 0.7232949 1
9942  1.291776 -0.6737528 0.7232949 2
9943  1.291776 -0.6737528 0.7232949 2
9944  1.291776 -0.6737528 0.7232949 3
9945  1.291776 -0.6737528 0.7232949 1
9946  1.291776 -0.6737528 0.7232949 3
9947  1.291776 -0.6737528 0.7232949 1
9948  1.291776 -0.6737528 0.7232949 3
9949  1.291776 -0.6737528 0.7232949 1
9950  1.291776 -0.6737528 0.7232949 2
9951  1.291776 -0.6737528 0.7232949 1
9952  1.291776 -0.6737528 0.7232949 2
9953  1.291776 -0.6737528 0.7232949 3
9954  1.291776 -0.6737528 0.7232949 3
9955  1.291776 -0.6737528 0.7232949 3
9956  1.291776 -0.6737528 0.7232949 3
9957  1.291776 -0.6737528 0.7232949 2
9958  1.291776 -0.6737528 0.7232949 1
9959  1.291776 -0.6737528 0.7232949 2
9960  1.291776 -0.6737528 0.7232949 3
9961  1.291776 -0.6737528 0.7232949 2
9962  1.291776 -0.6737528 0.7232949 1
9963  1.291776 -0.6737528 0.7232949 3
9964  1.291776 -0.6737528 0.7232949 3
9965  1.291776 -0.6737528 0.7232949 2
9966  1.291776 -0.6737528 0.7232949 1
9967  1.291776 -0.6737528 0.7232949 3
9968  1.291776 -0.6737528 0.7232949 3
9969  1.291776 -0.6737528 0.7232949 3
9970  1.291776 -0.6737528 0.7232949 2
9971  1.291776 -0.6737528 0.7232949 1
9972  1.291776 -0.6737528 0.7232949 2
9973  1.291776 -0.6737528 0.7232949 3
9974  1.291776 -0.6737528 0.7232949 2
9975  1.291776 -0.6737528 0.7232949 1
9976  1.291776 -0.6737528 0.7232949 3
9977  1.291776 -0.6737528 0.7232949 2
9978  1.291776 -0.6737528 0.7232949 1
9979  1.291776 -0.6737528 0.7232949 1
9980  1.291776 -0.6737528 0.7232949 2
9981  1.291776 -0.6737528 0.7232949 1
9982  1.291776 -0.6737528 0.7232949 1
9983  1.291776 -0.6737528 0.7232949 3
9984  1.291776 -0.6737528 0.7232949 3
9985  1.291776 -0.6737528 0.7232949 1
9986  1.291776 -0.6737528 0.7232949 2
9987  1.291776 -0.6737528 0.7232949 3
9988  1.291776 -0.6737528 0.7232949 3
9989  1.291776 -0.6737528 0.7232949 2
9990  1.291776 -0.6737528 0.7232949 1
9991  1.291776 -0.6737528 0.7232949 2
9992  1.291776 -0.6737528 0.7232949 2
9993  1.291776 -0.6737528 0.7232949 2
9994  1.291776 -0.6737528 0.7232949 3
9995  1.291776 -0.6737528 0.7232949 1
9996  1.291776 -0.6737528 0.7232949 2
9997  1.291776 -0.6737528 0.7232949 3
9998  1.291776 -0.6737528 0.7232949 3
9999  1.291776 -0.6737528 0.7232949 2
10000 1.291776 -0.6737528 0.7232949 1
10001 1.291776 -0.6737528 0.7232949 3
10002 1.291776 -0.6737528 0.7232949 1
10003 1.291776 -0.6737528 0.7232949 3
10004 1.291776 -0.6737528 0.7232949 3
10005 1.291776 -0.6737528 0.7232949 3
10006 1.291776 -0.6737528 0.7232949 1
10007 1.291776 -0.6737528 0.7232949 2
10008 1.291776 -0.6737528 0.7232949 3
10009 1.291776 -0.6737528 0.7232949 1
10010 1.291776 -0.6737528 0.7232949 2
10011 1.291776 -0.6737528 0.7232949 3
10012 1.291776 -0.6737528 0.7232949 2
10013 1.291776 -0.6737528 0.7232949 2
10014 1.291776 -0.6737528 0.7232949 1
10015 1.291776 -0.6737528 0.7232949 1
10016 1.291776 -0.6737528 0.7232949 1
10017 1.291776 -0.6737528 0.7232949 2
10018 1.291776 -0.6737528 0.7232949 2
10019 1.291776 -0.6737528 0.7232949 2
10020 1.291776 -0.6737528 0.7232949 1
10021 1.291776 -0.6737528 0.7232949 1
10022 1.291776 -0.6737528 0.7232949 3
10023 1.291776 -0.6737528 0.7232949 2
10024 1.291776 -0.6737528 0.7232949 1
10025 1.291776 -0.6737528 0.7232949 3
10026 1.291776 -0.6737528 0.7232949 3
10027 1.291776 -0.6737528 0.7232949 1
10028 1.291776 -0.6737528 0.7232949 2
10029 1.291776 -0.6737528 0.7232949 1
10030 1.291776 -0.6737528 0.7232949 3
10031 1.291776 -0.6737528 0.7232949 2
10032 1.291776 -0.6737528 0.7232949 3
10033 1.291776 -0.6737528 0.7232949 2
10034 1.291776 -0.6737528 0.7232949 1
10035 1.291776 -0.6737528 0.7232949 3
10036 1.291776 -0.6737528 0.7232949 2
10037 1.291776 -0.6737528 0.7232949 3
10038 1.291776 -0.6737528 0.7232949 1
10039 1.291776 -0.6737528 0.7232949 3
10040 1.291776 -0.6737528 0.7232949 1
10041 1.291776 -0.6737528 0.7232949 2
10042 1.291776 -0.6737528 0.7232949 2
10043 1.291776 -0.6737528 0.7232949 3
10044 1.291776 -0.6737528 0.7232949 2
10045 1.291776 -0.6737528 0.7232949 2
10046 1.291776 -0.6737528 0.7232949 2
10047 1.291776 -0.6737528 0.7232949 2
10048 1.291776 -0.6737528 0.7232949 2
10049 1.291776 -0.6737528 0.7232949 1
10050 1.291776 -0.6737528 0.7232949 3
10051 1.291776 -0.6737528 0.7232949 2
10052 1.291776 -0.6737528 0.7232949 1
10053 1.291776 -0.6737528 0.7232949 2
10054 1.291776 -0.6737528 0.7232949 1
10055 1.291776 -0.6737528 0.7232949 1
10056 1.291776 -0.6737528 0.7232949 2
10057 1.291776 -0.6737528 0.7232949 1
10058 1.291776 -0.6737528 0.7232949 1
10059 1.291776 -0.6737528 0.7232949 1
10060 1.291776 -0.6737528 0.7232949 2
10061 1.291776 -0.6737528 0.7232949 1
10062 1.291776 -0.6737528 0.7232949 2
10063 1.291776 -0.6737528 0.7232949 2
10064 1.291776 -0.6737528 0.7232949 1
10065 1.291776 -0.6737528 0.7232949 3
10066 1.291776 -0.6737528 0.7232949 3
10067 1.291776 -0.6737528 0.7232949 3
10068 1.291776 -0.6737528 0.7232949 2
10069 1.291776 -0.6737528 0.7232949 1
10070 1.291776 -0.6737528 0.7232949 2
10071 1.291776 -0.6737528 0.7232949 1
10072 1.291776 -0.6737528 0.7232949 1
10073 1.291776 -0.6737528 0.7232949 3
10074 1.291776 -0.6737528 0.7232949 1
10075 1.291776 -0.6737528 0.7232949 1
10076 1.291776 -0.6737528 0.7232949 1
10077 1.291776 -0.6737528 0.7232949 2
10078 1.291776 -0.6737528 0.7232949 3
10079 1.291776 -0.6737528 0.7232949 3
10080 1.291776 -0.6737528 0.7232949 3
10081 1.291776 -0.6737528 0.7232949 2
10082 1.291776 -0.6737528 0.7232949 1
10083 1.291776 -0.6737528 0.7232949 2
10084 1.291776 -0.6737528 0.7232949 3
10085 1.291776 -0.6737528 0.7232949 2
10086 1.291776 -0.6737528 0.7232949 3
10087 1.291776 -0.6737528 0.7232949 3
10088 1.291776 -0.6737528 0.7232949 1
10089 1.291776 -0.6737528 0.7232949 1
10090 1.291776 -0.6737528 0.7232949 3
10091 1.291776 -0.6737528 0.7232949 2
10092 1.291776 -0.6737528 0.7232949 3
10093 1.291776 -0.6737528 0.7232949 2
10094 1.291776 -0.6737528 0.7232949 2
10095 1.291776 -0.6737528 0.7232949 1
10096 1.291776 -0.6737528 0.7232949 1
10097 1.291776 -0.6737528 0.7232949 3
10098 1.291776 -0.6737528 0.7232949 1
10099 1.291776 -0.6737528 0.7232949 3
10100 1.291776 -0.6737528 0.7232949 3
10101 1.291776 -0.6737528 0.7232949 3
10102 1.291776 -0.6737528 0.7232949 2
10103 1.291776 -0.6737528 0.7232949 1
10104 1.291776 -0.6737528 0.7232949 1
10105 1.291776 -0.6737528 0.7232949 3
10106 1.291776 -0.6737528 0.7232949 3
10107 1.291776 -0.6737528 0.7232949 2
10108 1.291776 -0.6737528 0.7232949 1
10109 1.291776 -0.6737528 0.7232949 3
10110 1.295207 -0.6665477 0.7191899 3
10111 1.295207 -0.6665477 0.7191899 2
10112 1.295207 -0.6665477 0.7191899 1
10113 1.295207 -0.6665477 0.7191899 2
10114 1.295207 -0.6665477 0.7191899 1
10115 1.295207 -0.6665477 0.7191899 1
10116 1.295207 -0.6665477 0.7191899 3
10117 1.295207 -0.6665477 0.7191899 2
10118 1.295207 -0.6665477 0.7191899 2
10119 1.295207 -0.6665477 0.7191899 3
10120 1.295207 -0.6665477 0.7191899 2
10121 1.295207 -0.6665477 0.7191899 1
10122 1.295207 -0.6665477 0.7191899 1
10123 1.295207 -0.6665477 0.7191899 1
10124 1.295207 -0.6665477 0.7191899 1
10125 1.295207 -0.6665477 0.7191899 3
10126 1.295207 -0.6665477 0.7191899 2
10127 1.295207 -0.6665477 0.7191899 2
10128 1.295207 -0.6665477 0.7191899 1
10129 1.295207 -0.6665477 0.7191899 2
10130 1.295207 -0.6665477 0.7191899 3
10131 1.295207 -0.6665477 0.7191899 2
10132 1.295207 -0.6665477 0.7191899 2
10133 1.295207 -0.6665477 0.7191899 1
10134 1.295207 -0.6665477 0.7191899 2
10135 1.295207 -0.6665477 0.7191899 2
10136 1.295207 -0.6665477 0.7191899 3
10137 1.295207 -0.6665477 0.7191899 3
10138 1.295207 -0.6665477 0.7191899 2
10139 1.295207 -0.6665477 0.7191899 3
10140 1.295207 -0.6665477 0.7191899 2
10141 1.295207 -0.6665477 0.7191899 2
10142 1.295207 -0.6665477 0.7191899 3
10143 1.295207 -0.6665477 0.7191899 2
10144 1.295207 -0.6665477 0.7191899 2
10145 1.295207 -0.6665477 0.7191899 2
10146 1.295207 -0.6665477 0.7191899 1
10147 1.295207 -0.6665477 0.7191899 3
10148 1.295207 -0.6665477 0.7191899 1
10149 1.295207 -0.6665477 0.7191899 1
10150 1.295207 -0.6665477 0.7191899 2
10151 1.295207 -0.6665477 0.7191899 1
10152 1.295207 -0.6665477 0.7191899 1
10153 1.295207 -0.6665477 0.7191899 3
10154 1.295207 -0.6665477 0.7191899 2
10155 1.295207 -0.6665477 0.7191899 2
10156 1.295207 -0.6665477 0.7191899 3
10157 1.295207 -0.6665477 0.7191899 3
10158 1.295207 -0.6665477 0.7191899 1
10159 1.295207 -0.6665477 0.7191899 2
10160 1.295207 -0.6665477 0.7191899 2
10161 1.295207 -0.6665477 0.7191899 3
10162 1.295207 -0.6665477 0.7191899 3
10163 1.295207 -0.6665477 0.7191899 1
10164 1.295207 -0.6665477 0.7191899 1
10165 1.295207 -0.6665477 0.7191899 1
10166 1.295207 -0.6665477 0.7191899 2
10167 1.295207 -0.6665477 0.7191899 1
10168 1.295207 -0.6665477 0.7191899 2
10169 1.295207 -0.6665477 0.7191899 3
10170 1.295207 -0.6665477 0.7191899 2
10171 1.295207 -0.6665477 0.7191899 3
10172 1.295207 -0.6665477 0.7191899 2
10173 1.295207 -0.6665477 0.7191899 1
10174 1.295207 -0.6665477 0.7191899 2
10175 1.295207 -0.6665477 0.7191899 2
10176 1.295207 -0.6665477 0.7191899 2
10177 1.295207 -0.6665477 0.7191899 2
10178 1.295207 -0.6665477 0.7191899 3
10179 1.295207 -0.6665477 0.7191899 1
10180 1.295207 -0.6665477 0.7191899 3
10181 1.295207 -0.6665477 0.7191899 3
10182 1.295207 -0.6665477 0.7191899 1
10183 1.295207 -0.6665477 0.7191899 2
10184 1.295207 -0.6665477 0.7191899 1
10185 1.295207 -0.6665477 0.7191899 3
10186 1.295207 -0.6665477 0.7191899 3
10187 1.295207 -0.6665477 0.7191899 2
10188 1.295207 -0.6665477 0.7191899 2
10189 1.295207 -0.6665477 0.7191899 3
10190 1.295207 -0.6665477 0.7191899 2
10191 1.295207 -0.6665477 0.7191899 3
10192 1.295207 -0.6665477 0.7191899 1
10193 1.295207 -0.6665477 0.7191899 1
10194 1.295207 -0.6665477 0.7191899 2
10195 1.295207 -0.6665477 0.7191899 2
10196 1.295207 -0.6665477 0.7191899 1
10197 1.295207 -0.6665477 0.7191899 2
10198 1.295207 -0.6665477 0.7191899 2
10199 1.295207 -0.6665477 0.7191899 3
10200 1.295207 -0.6665477 0.7191899 3
10201 1.295207 -0.6665477 0.7191899 1
10202 1.295207 -0.6665477 0.7191899 1
10203 1.295207 -0.6665477 0.7191899 1
10204 1.295207 -0.6665477 0.7191899 3
10205 1.295207 -0.6665477 0.7191899 2
10206 1.295207 -0.6665477 0.7191899 1
10207 1.295207 -0.6665477 0.7191899 2
10208 1.295207 -0.6665477 0.7191899 1
10209 1.295207 -0.6665477 0.7191899 1
10210 1.295207 -0.6665477 0.7191899 1
10211 1.295207 -0.6665477 0.7191899 3
10212 1.295207 -0.6665477 0.7191899 3
10213 1.295207 -0.6665477 0.7191899 1
10214 1.295207 -0.6665477 0.7191899 3
10215 1.295207 -0.6665477 0.7191899 1
10216 1.295207 -0.6665477 0.7191899 1
10217 1.295207 -0.6665477 0.7191899 2
10218 1.295207 -0.6665477 0.7191899 2
10219 1.295207 -0.6665477 0.7191899 2
10220 1.295207 -0.6665477 0.7191899 3
10221 1.295207 -0.6665477 0.7191899 2
10222 1.295207 -0.6665477 0.7191899 1
10223 1.295207 -0.6665477 0.7191899 2
10224 1.295207 -0.6665477 0.7191899 2
10225 1.295207 -0.6665477 0.7191899 3
10226 1.295207 -0.6665477 0.7191899 1
10227 1.295207 -0.6665477 0.7191899 3
10228 1.295207 -0.6665477 0.7191899 3
10229 1.295207 -0.6665477 0.7191899 1
10230 1.295207 -0.6665477 0.7191899 1
10231 1.295207 -0.6665477 0.7191899 1
10232 1.295207 -0.6665477 0.7191899 1
10233 1.295207 -0.6665477 0.7191899 1
10234 1.295207 -0.6665477 0.7191899 1
10235 1.295207 -0.6665477 0.7191899 1
10236 1.295207 -0.6665477 0.7191899 1
10237 1.295207 -0.6665477 0.7191899 2
10238 1.295207 -0.6665477 0.7191899 1
10239 1.295207 -0.6665477 0.7191899 2
10240 1.295207 -0.6665477 0.7191899 2
10241 1.295207 -0.6665477 0.7191899 3
10242 1.295207 -0.6665477 0.7191899 1
10243 1.295207 -0.6665477 0.7191899 2
10244 1.295207 -0.6665477 0.7191899 3
10245 1.295207 -0.6665477 0.7191899 3
10246 1.295207 -0.6665477 0.7191899 3
10247 1.295207 -0.6665477 0.7191899 2
10248 1.295207 -0.6665477 0.7191899 1
10249 1.295207 -0.6665477 0.7191899 2
10250 1.295207 -0.6665477 0.7191899 2
10251 1.295207 -0.6665477 0.7191899 2
10252 1.295207 -0.6665477 0.7191899 2
10253 1.295207 -0.6665477 0.7191899 3
10254 1.295207 -0.6665477 0.7191899 1
10255 1.295207 -0.6665477 0.7191899 2
10256 1.295207 -0.6665477 0.7191899 3
10257 1.295207 -0.6665477 0.7191899 1
10258 1.295207 -0.6665477 0.7191899 1
10259 1.295207 -0.6665477 0.7191899 1
10260 1.295207 -0.6665477 0.7191899 2
10261 1.295207 -0.6665477 0.7191899 1
10262 1.295207 -0.6665477 0.7191899 2
10263 1.295207 -0.6665477 0.7191899 3
10264 1.295207 -0.6665477 0.7191899 2
10265 1.295207 -0.6665477 0.7191899 1
10266 1.295207 -0.6665477 0.7191899 2
10267 1.295207 -0.6665477 0.7191899 3
10268 1.295207 -0.6665477 0.7191899 2
10269 1.295207 -0.6665477 0.7191899 2
10270 1.295207 -0.6665477 0.7191899 1
10271 1.295207 -0.6665477 0.7191899 1
10272 1.295207 -0.6665477 0.7191899 3
10273 1.295207 -0.6665477 0.7191899 3
10274 1.295207 -0.6665477 0.7191899 3
10275 1.295207 -0.6665477 0.7191899 3
10276 1.295207 -0.6665477 0.7191899 3
10277 1.295207 -0.6665477 0.7191899 3
10278 1.295207 -0.6665477 0.7191899 2
10279 1.295207 -0.6665477 0.7191899 2
10280 1.295207 -0.6665477 0.7191899 2
10281 1.295207 -0.6665477 0.7191899 3
10282 1.295207 -0.6665477 0.7191899 3
10283 1.295207 -0.6665477 0.7191899 2
10284 1.295207 -0.6665477 0.7191899 3
10285 1.295207 -0.6665477 0.7191899 2
10286 1.295207 -0.6665477 0.7191899 3
10287 1.295207 -0.6665477 0.7191899 2
10288 1.295207 -0.6665477 0.7191899 2
10289 1.295207 -0.6665477 0.7191899 1
10290 1.295207 -0.6665477 0.7191899 3
10291 1.295207 -0.6665477 0.7191899 2
10292 1.295207 -0.6665477 0.7191899 1
10293 1.295207 -0.6665477 0.7191899 2
10294 1.295207 -0.6665477 0.7191899 2
10295 1.295207 -0.6665477 0.7191899 3
10296 1.295207 -0.6665477 0.7191899 1
10297 1.295207 -0.6665477 0.7191899 1
10298 1.295207 -0.6665477 0.7191899 2
10299 1.295207 -0.6665477 0.7191899 1
10300 1.295207 -0.6665477 0.7191899 2
10301 1.295207 -0.6665477 0.7191899 1
10302 1.295207 -0.6665477 0.7191899 3
10303 1.295207 -0.6665477 0.7191899 2
10304 1.295207 -0.6665477 0.7191899 2
10305 1.295207 -0.6665477 0.7191899 1
10306 1.295207 -0.6665477 0.7191899 1
10307 1.295207 -0.6665477 0.7191899 3
10308 1.295207 -0.6665477 0.7191899 2
10309 1.295207 -0.6665477 0.7191899 3
10310 1.295207 -0.6665477 0.7191899 1
10311 1.295207 -0.6665477 0.7191899 3
10312 1.295207 -0.6665477 0.7191899 2
10313 1.295207 -0.6665477 0.7191899 3
10314 1.295207 -0.6665477 0.7191899 2
10315 1.295207 -0.6665477 0.7191899 2
10316 1.295207 -0.6665477 0.7191899 3
10317 1.295207 -0.6665477 0.7191899 2
10318 1.295207 -0.6665477 0.7191899 2
10319 1.295207 -0.6665477 0.7191899 1
10320 1.295207 -0.6665477 0.7191899 2
10321 1.295207 -0.6665477 0.7191899 3
10322 1.295207 -0.6665477 0.7191899 2
10323 1.295207 -0.6665477 0.7191899 2
10324 1.295207 -0.6665477 0.7191899 1
10325 1.295207 -0.6665477 0.7191899 3
10326 1.295207 -0.6665477 0.7191899 1
10327 1.295207 -0.6665477 0.7191899 1
10328 1.295207 -0.6665477 0.7191899 1
10329 1.295207 -0.6665477 0.7191899 1
10330 1.295207 -0.6665477 0.7191899 1
10331 1.295207 -0.6665477 0.7191899 1
10332 1.295207 -0.6665477 0.7191899 3
10333 1.295207 -0.6665477 0.7191899 3
10334 1.295207 -0.6665477 0.7191899 2
10335 1.295207 -0.6665477 0.7191899 1
10336 1.295207 -0.6665477 0.7191899 2
10337 1.295207 -0.6665477 0.7191899 1
10338 1.295207 -0.6665477 0.7191899 1
10339 1.295207 -0.6665477 0.7191899 3
10340 1.295207 -0.6665477 0.7191899 1
10341 1.295207 -0.6665477 0.7191899 1
10342 1.295207 -0.6665477 0.7191899 1
10343 1.295207 -0.6665477 0.7191899 1
10344 1.295207 -0.6665477 0.7191899 3
10345 1.295207 -0.6665477 0.7191899 1
10346 1.295207 -0.6665477 0.7191899 1
10347 1.295207 -0.6665477 0.7191899 1
10348 1.295207 -0.6665477 0.7191899 3
10349 1.295207 -0.6665477 0.7191899 2
10350 1.295207 -0.6665477 0.7191899 3
10351 1.295207 -0.6665477 0.7191899 3
10352 1.295207 -0.6665477 0.7191899 1
10353 1.295207 -0.6665477 0.7191899 3
10354 1.295207 -0.6665477 0.7191899 1
10355 1.295207 -0.6665477 0.7191899 1
10356 1.295207 -0.6665477 0.7191899 3
10357 1.295207 -0.6665477 0.7191899 2
10358 1.295207 -0.6665477 0.7191899 3
10359 1.295207 -0.6665477 0.7191899 2
10360 1.295207 -0.6665477 0.7191899 2
10361 1.295207 -0.6665477 0.7191899 2
10362 1.295207 -0.6665477 0.7191899 2
10363 1.295207 -0.6665477 0.7191899 3
10364 1.295207 -0.6665477 0.7191899 2
10365 1.295207 -0.6665477 0.7191899 3
10366 1.295207 -0.6665477 0.7191899 3
10367 1.295207 -0.6665477 0.7191899 2
10368 1.295207 -0.6665477 0.7191899 2
10369 1.295207 -0.6665477 0.7191899 1
10370 1.295207 -0.6665477 0.7191899 3
10371 1.295207 -0.6665477 0.7191899 3
10372 1.295207 -0.6665477 0.7191899 1
10373 1.295207 -0.6665477 0.7191899 3
10374 1.295207 -0.6665477 0.7191899 3
10375 1.295207 -0.6665477 0.7191899 2
10376 1.295207 -0.6665477 0.7191899 2
10377 1.295207 -0.6665477 0.7191899 1
10378 1.295207 -0.6665477 0.7191899 3
10379 1.295207 -0.6665477 0.7191899 3
10380 1.295207 -0.6665477 0.7191899 1
10381 1.295207 -0.6665477 0.7191899 2
10382 1.295207 -0.6665477 0.7191899 3
10383 1.295207 -0.6665477 0.7191899 1
10384 1.295207 -0.6665477 0.7191899 3
10385 1.295207 -0.6665477 0.7191899 2
10386 1.295207 -0.6665477 0.7191899 1
10387 1.295207 -0.6665477 0.7191899 3
10388 1.295207 -0.6665477 0.7191899 1
10389 1.295207 -0.6665477 0.7191899 2
10390 1.295207 -0.6665477 0.7191899 3
10391 1.295207 -0.6665477 0.7191899 1
10392 1.295207 -0.6665477 0.7191899 2
10393 1.295207 -0.6665477 0.7191899 2
10394 1.295207 -0.6665477 0.7191899 1
10395 1.295207 -0.6665477 0.7191899 3
10396 1.295207 -0.6665477 0.7191899 2
10397 1.295207 -0.6665477 0.7191899 1
10398 1.295207 -0.6665477 0.7191899 3
10399 1.295207 -0.6665477 0.7191899 3
10400 1.295207 -0.6665477 0.7191899 2
10401 1.295207 -0.6665477 0.7191899 3
10402 1.295207 -0.6665477 0.7191899 2
10403 1.295207 -0.6665477 0.7191899 1
10404 1.295207 -0.6665477 0.7191899 1
10405 1.295207 -0.6665477 0.7191899 3
10406 1.295207 -0.6665477 0.7191899 2
10407 1.295207 -0.6665477 0.7191899 3
10408 1.295207 -0.6665477 0.7191899 3
10409 1.295207 -0.6665477 0.7191899 2
10410 1.295207 -0.6665477 0.7191899 2
10411 1.295207 -0.6665477 0.7191899 2
10412 1.295207 -0.6665477 0.7191899 3
10413 1.295207 -0.6665477 0.7191899 3
10414 1.295207 -0.6665477 0.7191899 3
10415 1.295207 -0.6665477 0.7191899 1
10416 1.295207 -0.6665477 0.7191899 1
10417 1.295207 -0.6665477 0.7191899 3
10418 1.295207 -0.6665477 0.7191899 2
10419 1.295207 -0.6665477 0.7191899 1
10420 1.295207 -0.6665477 0.7191899 2
10421 1.295207 -0.6665477 0.7191899 2
10422 1.295207 -0.6665477 0.7191899 2
10423 1.295207 -0.6665477 0.7191899 1
10424 1.295207 -0.6665477 0.7191899 3
10425 1.295207 -0.6665477 0.7191899 3
10426 1.295207 -0.6665477 0.7191899 2
10427 1.295207 -0.6665477 0.7191899 1
10428 1.295207 -0.6665477 0.7191899 2
10429 1.295207 -0.6665477 0.7191899 1
10430 1.295207 -0.6665477 0.7191899 2
10431 1.295207 -0.6665477 0.7191899 2
10432 1.295207 -0.6665477 0.7191899 1
10433 1.295207 -0.6665477 0.7191899 2
10434 1.295207 -0.6665477 0.7191899 3
10435 1.295207 -0.6665477 0.7191899 2
10436 1.295207 -0.6665477 0.7191899 1
10437 1.295207 -0.6665477 0.7191899 1
10438 1.295207 -0.6665477 0.7191899 2
10439 1.295207 -0.6665477 0.7191899 2
10440 1.295207 -0.6665477 0.7191899 3
10441 1.295207 -0.6665477 0.7191899 3
10442 1.295207 -0.6665477 0.7191899 3
10443 1.295207 -0.6665477 0.7191899 1
10444 1.295207 -0.6665477 0.7191899 3
10445 1.295207 -0.6665477 0.7191899 2
10446 1.295207 -0.6665477 0.7191899 1
10447 1.295207 -0.6665477 0.7191899 3
10448 1.295207 -0.6665477 0.7191899 2
10449 1.295207 -0.6665477 0.7191899 1
10450 1.295207 -0.6665477 0.7191899 2
10451 1.295207 -0.6665477 0.7191899 3
10452 1.295207 -0.6665477 0.7191899 2
10453 1.295207 -0.6665477 0.7191899 2
10454 1.295207 -0.6665477 0.7191899 2
10455 1.295207 -0.6665477 0.7191899 2
10456 1.295207 -0.6665477 0.7191899 1
10457 1.295207 -0.6665477 0.7191899 3
10458 1.295207 -0.6665477 0.7191899 2
10459 1.295207 -0.6665477 0.7191899 2
10460 1.295207 -0.6665477 0.7191899 2
10461 1.295207 -0.6665477 0.7191899 3
10462 1.295207 -0.6665477 0.7191899 1
10463 1.295207 -0.6665477 0.7191899 2
10464 1.295207 -0.6665477 0.7191899 2
10465 1.295207 -0.6665477 0.7191899 1
10466 1.295207 -0.6665477 0.7191899 1
10467 1.295207 -0.6665477 0.7191899 1
10468 1.295207 -0.6665477 0.7191899 1
10469 1.295207 -0.6665477 0.7191899 1
10470 1.295207 -0.6665477 0.7191899 3
10471 1.295207 -0.6665477 0.7191899 3
10472 1.295207 -0.6665477 0.7191899 1
10473 1.295207 -0.6665477 0.7191899 1
10474 1.295207 -0.6665477 0.7191899 1
10475 1.295207 -0.6665477 0.7191899 3
10476 1.295207 -0.6665477 0.7191899 2
10477 1.295207 -0.6665477 0.7191899 3
10478 1.295207 -0.6665477 0.7191899 1
10479 1.295207 -0.6665477 0.7191899 2
10480 1.295207 -0.6665477 0.7191899 1
10481 1.295207 -0.6665477 0.7191899 1
10482 1.295207 -0.6665477 0.7191899 3
10483 1.295207 -0.6665477 0.7191899 3
10484 1.295207 -0.6665477 0.7191899 1
10485 1.295207 -0.6665477 0.7191899 2
10486 1.295207 -0.6665477 0.7191899 3
10487 1.295207 -0.6665477 0.7191899 3
10488 1.295207 -0.6665477 0.7191899 1
10489 1.295207 -0.6665477 0.7191899 3
10490 1.295207 -0.6665477 0.7191899 2
10491 1.295207 -0.6665477 0.7191899 1
10492 1.295207 -0.6665477 0.7191899 3
10493 1.295207 -0.6665477 0.7191899 3
10494 1.295207 -0.6665477 0.7191899 2
10495 1.295207 -0.6665477 0.7191899 1
10496 1.295207 -0.6665477 0.7191899 1
10497 1.295207 -0.6665477 0.7191899 1
10498 1.295207 -0.6665477 0.7191899 1
10499 1.295207 -0.6665477 0.7191899 1
10500 1.295207 -0.6665477 0.7191899 1
10501 1.295207 -0.6665477 0.7191899 1
10502 1.295207 -0.6665477 0.7191899 2
10503 1.295207 -0.6665477 0.7191899 2
10504 1.295207 -0.6665477 0.7191899 3
10505 1.295207 -0.6665477 0.7191899 3
10506 1.295207 -0.6665477 0.7191899 3
10507 1.295207 -0.6665477 0.7191899 1
10508 1.295207 -0.6665477 0.7191899 1
10509 1.295207 -0.6665477 0.7191899 3
10510 1.295207 -0.6665477 0.7191899 2
10511 1.295207 -0.6665477 0.7191899 2
10512 1.295207 -0.6665477 0.7191899 1
10513 1.295207 -0.6665477 0.7191899 2
10514 1.295207 -0.6665477 0.7191899 1
10515 1.295207 -0.6665477 0.7191899 1
10516 1.295207 -0.6665477 0.7191899 3
10517 1.295207 -0.6665477 0.7191899 1
10518 1.295207 -0.6665477 0.7191899 2
10519 1.295207 -0.6665477 0.7191899 3
10520 1.295207 -0.6665477 0.7191899 1
10521 1.295207 -0.6665477 0.7191899 1
10522 1.295207 -0.6665477 0.7191899 2
10523 1.295207 -0.6665477 0.7191899 2
10524 1.295207 -0.6665477 0.7191899 1
10525 1.295207 -0.6665477 0.7191899 2
10526 1.295207 -0.6665477 0.7191899 3
10527 1.295207 -0.6665477 0.7191899 3
10528 1.295207 -0.6665477 0.7191899 3
10529 1.295207 -0.6665477 0.7191899 1
10530 1.295207 -0.6665477 0.7191899 2
10531 1.295207 -0.6665477 0.7191899 1
10532 1.295207 -0.6665477 0.7191899 2
10533 1.295207 -0.6665477 0.7191899 2
10534 1.295207 -0.6665477 0.7191899 2
10535 1.295207 -0.6665477 0.7191899 1
10536 1.295207 -0.6665477 0.7191899 2
10537 1.295207 -0.6665477 0.7191899 2
10538 1.295207 -0.6665477 0.7191899 2
10539 1.295207 -0.6665477 0.7191899 3
10540 1.295207 -0.6665477 0.7191899 2
10541 1.295207 -0.6665477 0.7191899 1
10542 1.295207 -0.6665477 0.7191899 1
10543 1.295207 -0.6665477 0.7191899 3
10544 1.295207 -0.6665477 0.7191899 3
10545 1.295207 -0.6665477 0.7191899 1
10546 1.295207 -0.6665477 0.7191899 3
10547 1.295207 -0.6665477 0.7191899 2
10548 1.295207 -0.6665477 0.7191899 2
10549 1.295207 -0.6665477 0.7191899 3
10550 1.295207 -0.6665477 0.7191899 3
10551 1.295207 -0.6665477 0.7191899 1
10552 1.295207 -0.6665477 0.7191899 1
10553 1.295207 -0.6665477 0.7191899 3
10554 1.295207 -0.6665477 0.7191899 2
10555 1.295207 -0.6665477 0.7191899 1
10556 1.295207 -0.6665477 0.7191899 2
10557 1.295207 -0.6665477 0.7191899 3
10558 1.295207 -0.6665477 0.7191899 1
10559 1.295207 -0.6665477 0.7191899 1
10560 1.295207 -0.6665477 0.7191899 3
10561 1.295207 -0.6665477 0.7191899 2
10562 1.295207 -0.6665477 0.7191899 1
10563 1.295207 -0.6665477 0.7191899 1
10564 1.295207 -0.6665477 0.7191899 1
10565 1.295207 -0.6665477 0.7191899 3
10566 1.295207 -0.6665477 0.7191899 3
10567 1.295207 -0.6665477 0.7191899 2
10568 1.295207 -0.6665477 0.7191899 3
10569 1.295207 -0.6665477 0.7191899 1
10570 1.295207 -0.6665477 0.7191899 2
10571 1.295207 -0.6665477 0.7191899 2
10572 1.295207 -0.6665477 0.7191899 2
10573 1.295207 -0.6665477 0.7191899 1
10574 1.295207 -0.6665477 0.7191899 3
10575 1.295207 -0.6665477 0.7191899 1
10576 1.295207 -0.6665477 0.7191899 1
10577 1.295207 -0.6665477 0.7191899 1
10578 1.295207 -0.6665477 0.7191899 1
10579 1.295207 -0.6665477 0.7191899 2
10580 1.295207 -0.6665477 0.7191899 3
10581 1.295207 -0.6665477 0.7191899 3
10582 1.295207 -0.6665477 0.7191899 3
10583 1.295207 -0.6665477 0.7191899 2
10584 1.295207 -0.6665477 0.7191899 1
10585 1.295207 -0.6665477 0.7191899 1
10586 1.295207 -0.6665477 0.7191899 2
10587 1.295207 -0.6665477 0.7191899 1
10588 1.295207 -0.6665477 0.7191899 1
10589 1.295207 -0.6665477 0.7191899 2
10590 1.295207 -0.6665477 0.7191899 3
10591 1.295207 -0.6665477 0.7191899 3
10592 1.295207 -0.6665477 0.7191899 2
10593 1.295207 -0.6665477 0.7191899 3
10594 1.295207 -0.6665477 0.7191899 2
10595 1.295207 -0.6665477 0.7191899 2
10596 1.295207 -0.6665477 0.7191899 3
10597 1.295207 -0.6665477 0.7191899 2
10598 1.295207 -0.6665477 0.7191899 3
10599 1.295207 -0.6665477 0.7191899 3
10600 1.295207 -0.6665477 0.7191899 1
10601 1.295207 -0.6665477 0.7191899 3
10602 1.295207 -0.6665477 0.7191899 1
10603 1.295207 -0.6665477 0.7191899 2
10604 1.295207 -0.6665477 0.7191899 1
10605 1.295207 -0.6665477 0.7191899 1
10606 1.295207 -0.6665477 0.7191899 1
10607 1.295207 -0.6665477 0.7191899 3
10608 1.295207 -0.6665477 0.7191899 1
10609 1.295207 -0.6665477 0.7191899 2
10610 1.295207 -0.6665477 0.7191899 3
10611 1.295207 -0.6665477 0.7191899 3
10612 1.295207 -0.6665477 0.7191899 2
10613 1.295207 -0.6665477 0.7191899 1
10614 1.295207 -0.6665477 0.7191899 1
10615 1.295207 -0.6665477 0.7191899 1
10616 1.295207 -0.6665477 0.7191899 1
10617 1.295207 -0.6665477 0.7191899 1
10618 1.295207 -0.6665477 0.7191899 2
10619 1.295207 -0.6665477 0.7191899 2
10620 1.295207 -0.6665477 0.7191899 1
10621 1.295207 -0.6665477 0.7191899 2
10622 1.295207 -0.6665477 0.7191899 3
10623 1.295207 -0.6665477 0.7191899 3
10624 1.295207 -0.6665477 0.7191899 2
10625 1.295207 -0.6665477 0.7191899 3
10626 1.295207 -0.6665477 0.7191899 3
10627 1.295207 -0.6665477 0.7191899 1
10628 1.295207 -0.6665477 0.7191899 1
10629 1.295207 -0.6665477 0.7191899 1
10630 1.295207 -0.6665477 0.7191899 2
10631 1.295207 -0.6665477 0.7191899 1
10632 1.295207 -0.6665477 0.7191899 3
10633 1.295207 -0.6665477 0.7191899 3
10634 1.295207 -0.6665477 0.7191899 2
10635 1.295207 -0.6665477 0.7191899 2
10636 1.295207 -0.6665477 0.7191899 1
10637 1.295207 -0.6665477 0.7191899 3
10638 1.295207 -0.6665477 0.7191899 3
10639 1.295207 -0.6665477 0.7191899 2
10640 1.295207 -0.6665477 0.7191899 1
10641 1.295207 -0.6665477 0.7191899 3
10642 1.295207 -0.6665477 0.7191899 3
10643 1.295207 -0.6665477 0.7191899 2
10644 1.295207 -0.6665477 0.7191899 1
10645 1.295207 -0.6665477 0.7191899 1
10646 1.295207 -0.6665477 0.7191899 1
10647 1.295207 -0.6665477 0.7191899 3
10648 1.295207 -0.6665477 0.7191899 3
10649 1.295207 -0.6665477 0.7191899 1
10650 1.295207 -0.6665477 0.7191899 3
10651 1.295207 -0.6665477 0.7191899 1
10652 1.295207 -0.6665477 0.7191899 3
10653 1.295207 -0.6665477 0.7191899 2
10654 1.295207 -0.6665477 0.7191899 2
10655 1.295207 -0.6665477 0.7191899 1
10656 1.295207 -0.6665477 0.7191899 2
10657 1.295207 -0.6665477 0.7191899 2
10658 1.295207 -0.6665477 0.7191899 3
10659 1.295207 -0.6665477 0.7191899 3
10660 1.295207 -0.6665477 0.7191899 3
10661 1.295207 -0.6665477 0.7191899 3
10662 1.295207 -0.6665477 0.7191899 1
10663 1.295207 -0.6665477 0.7191899 3
10664 1.295207 -0.6665477 0.7191899 2
10665 1.295207 -0.6665477 0.7191899 2
10666 1.295207 -0.6665477 0.7191899 1
10667 1.295207 -0.6665477 0.7191899 3
10668 1.295207 -0.6665477 0.7191899 1
10669 1.295207 -0.6665477 0.7191899 1
10670 1.295207 -0.6665477 0.7191899 2
10671 1.295207 -0.6665477 0.7191899 1
10672 1.295207 -0.6665477 0.7191899 3
10673 1.295207 -0.6665477 0.7191899 2
10674 1.295207 -0.6665477 0.7191899 2
10675 1.295207 -0.6665477 0.7191899 2
10676 1.295207 -0.6665477 0.7191899 1
10677 1.295207 -0.6665477 0.7191899 1
10678 1.295207 -0.6665477 0.7191899 2
10679 1.295207 -0.6665477 0.7191899 2
10680 1.295207 -0.6665477 0.7191899 2
10681 1.295207 -0.6665477 0.7191899 1
10682 1.295207 -0.6665477 0.7191899 2
10683 1.295207 -0.6665477 0.7191899 2
10684 1.295207 -0.6665477 0.7191899 1
10685 1.295207 -0.6665477 0.7191899 1
10686 1.295207 -0.6665477 0.7191899 3
10687 1.295207 -0.6665477 0.7191899 1
10688 1.295207 -0.6665477 0.7191899 2
10689 1.295207 -0.6665477 0.7191899 2
10690 1.295207 -0.6665477 0.7191899 3
10691 1.295207 -0.6665477 0.7191899 3
10692 1.295207 -0.6665477 0.7191899 3
10693 1.295207 -0.6665477 0.7191899 3
10694 1.295207 -0.6665477 0.7191899 1
10695 1.295207 -0.6665477 0.7191899 1
10696 1.295207 -0.6665477 0.7191899 2
10697 1.295207 -0.6665477 0.7191899 1
10698 1.295207 -0.6665477 0.7191899 3
10699 1.295207 -0.6665477 0.7191899 1
10700 1.295207 -0.6665477 0.7191899 2
10701 1.295207 -0.6665477 0.7191899 1
10702 1.295207 -0.6665477 0.7191899 3
10703 1.295207 -0.6665477 0.7191899 1
10704 1.295207 -0.6665477 0.7191899 3
10705 1.295207 -0.6665477 0.7191899 2
10706 1.295207 -0.6665477 0.7191899 2
10707 1.295207 -0.6665477 0.7191899 1
10708 1.295207 -0.6665477 0.7191899 2
10709 1.295207 -0.6665477 0.7191899 1
10710 1.295207 -0.6665477 0.7191899 2
10711 1.295207 -0.6665477 0.7191899 3
10712 1.295207 -0.6665477 0.7191899 3
10713 1.295207 -0.6665477 0.7191899 2
10714 1.295207 -0.6665477 0.7191899 3
10715 1.295207 -0.6665477 0.7191899 3
10716 1.295207 -0.6665477 0.7191899 3
10717 1.295207 -0.6665477 0.7191899 1
10718 1.295207 -0.6665477 0.7191899 3
10719 1.295207 -0.6665477 0.7191899 1
10720 1.295207 -0.6665477 0.7191899 1
10721 1.295207 -0.6665477 0.7191899 2
10722 1.295207 -0.6665477 0.7191899 3
10723 1.295207 -0.6665477 0.7191899 2
10724 1.295207 -0.6665477 0.7191899 2
10725 1.295207 -0.6665477 0.7191899 1
10726 1.295207 -0.6665477 0.7191899 3
10727 1.295207 -0.6665477 0.7191899 2
10728 1.295207 -0.6665477 0.7191899 2
10729 1.295207 -0.6665477 0.7191899 1
10730 1.295207 -0.6665477 0.7191899 2
10731 1.295207 -0.6665477 0.7191899 2
10732 1.295207 -0.6665477 0.7191899 3
10733 1.295207 -0.6665477 0.7191899 1
10734 1.295207 -0.6665477 0.7191899 1
10735 1.295207 -0.6665477 0.7191899 2
10736 1.295207 -0.6665477 0.7191899 1
10737 1.295207 -0.6665477 0.7191899 3
10738 1.295207 -0.6665477 0.7191899 3
10739 1.295207 -0.6665477 0.7191899 1
10740 1.295207 -0.6665477 0.7191899 3
10741 1.295207 -0.6665477 0.7191899 3
10742 1.295207 -0.6665477 0.7191899 3
10743 1.295207 -0.6665477 0.7191899 3
10744 1.295207 -0.6665477 0.7191899 2
10745 1.295207 -0.6665477 0.7191899 3
10746 1.295207 -0.6665477 0.7191899 1
10747 1.295207 -0.6665477 0.7191899 3
10748 1.295207 -0.6665477 0.7191899 1
10749 1.295207 -0.6665477 0.7191899 3
10750 1.295207 -0.6665477 0.7191899 1
10751 1.295207 -0.6665477 0.7191899 1
10752 1.295207 -0.6665477 0.7191899 3
10753 1.295207 -0.6665477 0.7191899 3
10754 1.295207 -0.6665477 0.7191899 1
10755 1.295207 -0.6665477 0.7191899 2
10756 1.295207 -0.6665477 0.7191899 1
10757 1.295207 -0.6665477 0.7191899 2
10758 1.295207 -0.6665477 0.7191899 2
10759 1.295207 -0.6665477 0.7191899 1
10760 1.295207 -0.6665477 0.7191899 1
10761 1.295207 -0.6665477 0.7191899 1
10762 1.295207 -0.6665477 0.7191899 3
10763 1.295207 -0.6665477 0.7191899 3
10764 1.295207 -0.6665477 0.7191899 3
10765 1.295207 -0.6665477 0.7191899 2
10766 1.295207 -0.6665477 0.7191899 2
10767 1.295207 -0.6665477 0.7191899 3
10768 1.295207 -0.6665477 0.7191899 1
10769 1.295207 -0.6665477 0.7191899 1
10770 1.295207 -0.6665477 0.7191899 2
10771 1.295207 -0.6665477 0.7191899 2
10772 1.295207 -0.6665477 0.7191899 2
10773 1.295207 -0.6665477 0.7191899 1
10774 1.295207 -0.6665477 0.7191899 2
10775 1.295207 -0.6665477 0.7191899 1
10776 1.295207 -0.6665477 0.7191899 2
10777 1.295207 -0.6665477 0.7191899 3
10778 1.295207 -0.6665477 0.7191899 1
10779 1.295207 -0.6665477 0.7191899 1
10780 1.295207 -0.6665477 0.7191899 2
10781 1.295207 -0.6665477 0.7191899 3
10782 1.295207 -0.6665477 0.7191899 1
10783 1.295207 -0.6665477 0.7191899 2
10784 1.295207 -0.6665477 0.7191899 1
10785 1.295207 -0.6665477 0.7191899 2
10786 1.295207 -0.6665477 0.7191899 3
10787 1.295207 -0.6665477 0.7191899 2
10788 1.295207 -0.6665477 0.7191899 1
10789 1.295207 -0.6665477 0.7191899 2
10790 1.295207 -0.6665477 0.7191899 3
10791 1.295207 -0.6665477 0.7191899 3
10792 1.295207 -0.6665477 0.7191899 3
10793 1.295207 -0.6665477 0.7191899 3
10794 1.295207 -0.6665477 0.7191899 1
10795 1.295207 -0.6665477 0.7191899 1
10796 1.295207 -0.6665477 0.7191899 1
10797 1.295207 -0.6665477 0.7191899 1
10798 1.295207 -0.6665477 0.7191899 3
10799 1.295207 -0.6665477 0.7191899 1
10800 1.295207 -0.6665477 0.7191899 3
10801 1.295207 -0.6665477 0.7191899 1
10802 1.295207 -0.6665477 0.7191899 1
10803 1.295207 -0.6665477 0.7191899 3
10804 1.295207 -0.6665477 0.7191899 1
10805 1.295207 -0.6665477 0.7191899 2
10806 1.295207 -0.6665477 0.7191899 3
10807 1.295207 -0.6665477 0.7191899 3
10808 1.295207 -0.6665477 0.7191899 1
10809 1.295207 -0.6665477 0.7191899 3
10810 1.295207 -0.6665477 0.7191899 2
10811 1.295207 -0.6665477 0.7191899 1
10812 1.295207 -0.6665477 0.7191899 3
10813 1.295207 -0.6665477 0.7191899 1
10814 1.295207 -0.6665477 0.7191899 2
10815 1.295207 -0.6665477 0.7191899 1
10816 1.295207 -0.6665477 0.7191899 1
10817 1.295207 -0.6665477 0.7191899 1
10818 1.295207 -0.6665477 0.7191899 2
10819 1.295207 -0.6665477 0.7191899 3
10820 1.295207 -0.6665477 0.7191899 1
10821 1.295207 -0.6665477 0.7191899 3
10822 1.295207 -0.6665477 0.7191899 1
10823 1.295207 -0.6665477 0.7191899 2
10824 1.295207 -0.6665477 0.7191899 3
10825 1.295207 -0.6665477 0.7191899 3
10826 1.295207 -0.6665477 0.7191899 1
10827 1.295207 -0.6665477 0.7191899 3
10828 1.295207 -0.6665477 0.7191899 3
10829 1.295207 -0.6665477 0.7191899 3
10830 1.295207 -0.6665477 0.7191899 2
10831 1.295207 -0.6665477 0.7191899 2
10832 1.295207 -0.6665477 0.7191899 3
10833 1.295207 -0.6665477 0.7191899 2
10834 1.295207 -0.6665477 0.7191899 3
10835 1.295207 -0.6665477 0.7191899 2
10836 1.295207 -0.6665477 0.7191899 1
10837 1.295207 -0.6665477 0.7191899 3
10838 1.295207 -0.6665477 0.7191899 2
10839 1.295207 -0.6665477 0.7191899 2
10840 1.295207 -0.6665477 0.7191899 2
10841 1.295207 -0.6665477 0.7191899 3
10842 1.295207 -0.6665477 0.7191899 2
10843 1.295207 -0.6665477 0.7191899 3
10844 1.295207 -0.6665477 0.7191899 1
10845 1.295207 -0.6665477 0.7191899 2
10846 1.295207 -0.6665477 0.7191899 2
10847 1.295207 -0.6665477 0.7191899 1
10848 1.295207 -0.6665477 0.7191899 2
10849 1.295207 -0.6665477 0.7191899 2
10850 1.295207 -0.6665477 0.7191899 3
10851 1.295207 -0.6665477 0.7191899 1
10852 1.295207 -0.6665477 0.7191899 2
10853 1.295207 -0.6665477 0.7191899 2
10854 1.295207 -0.6665477 0.7191899 2
10855 1.295207 -0.6665477 0.7191899 1
10856 1.295207 -0.6665477 0.7191899 3
10857 1.295207 -0.6665477 0.7191899 3
10858 1.295207 -0.6665477 0.7191899 3
10859 1.295207 -0.6665477 0.7191899 2
10860 1.295207 -0.6665477 0.7191899 3
10861 1.295207 -0.6665477 0.7191899 1
10862 1.295207 -0.6665477 0.7191899 2
10863 1.295207 -0.6665477 0.7191899 2
10864 1.295207 -0.6665477 0.7191899 3
10865 1.295207 -0.6665477 0.7191899 3
10866 1.295207 -0.6665477 0.7191899 3
10867 1.295207 -0.6665477 0.7191899 3
10868 1.295207 -0.6665477 0.7191899 3
10869 1.295207 -0.6665477 0.7191899 1
10870 1.295207 -0.6665477 0.7191899 3
10871 1.295207 -0.6665477 0.7191899 1
10872 1.295207 -0.6665477 0.7191899 1
10873 1.295207 -0.6665477 0.7191899 2
10874 1.295207 -0.6665477 0.7191899 3
10875 1.295207 -0.6665477 0.7191899 3
10876 1.295207 -0.6665477 0.7191899 1
10877 1.295207 -0.6665477 0.7191899 2
10878 1.295207 -0.6665477 0.7191899 2
10879 1.295207 -0.6665477 0.7191899 2
10880 1.295207 -0.6665477 0.7191899 3
10881 1.295207 -0.6665477 0.7191899 1
10882 1.295207 -0.6665477 0.7191899 1
10883 1.295207 -0.6665477 0.7191899 1
10884 1.295207 -0.6665477 0.7191899 2
10885 1.295207 -0.6665477 0.7191899 3
10886 1.295207 -0.6665477 0.7191899 1
10887 1.295207 -0.6665477 0.7191899 2
10888 1.295207 -0.6665477 0.7191899 2
10889 1.295207 -0.6665477 0.7191899 1
10890 1.295207 -0.6665477 0.7191899 1
10891 1.295207 -0.6665477 0.7191899 2
10892 1.295207 -0.6665477 0.7191899 2
10893 1.295207 -0.6665477 0.7191899 3
10894 1.295207 -0.6665477 0.7191899 3
10895 1.295207 -0.6665477 0.7191899 1
10896 1.295207 -0.6665477 0.7191899 2
10897 1.295207 -0.6665477 0.7191899 3
10898 1.295207 -0.6665477 0.7191899 2
10899 1.295207 -0.6665477 0.7191899 2
10900 1.295207 -0.6665477 0.7191899 2
10901 1.295207 -0.6665477 0.7191899 2
10902 1.295207 -0.6665477 0.7191899 2
10903 1.295207 -0.6665477 0.7191899 1
10904 1.295207 -0.6665477 0.7191899 1
10905 1.295207 -0.6665477 0.7191899 3
10906 1.295207 -0.6665477 0.7191899 2
10907 1.295207 -0.6665477 0.7191899 1
10908 1.295207 -0.6665477 0.7191899 1
10909 1.295207 -0.6665477 0.7191899 3
10910 1.295207 -0.6665477 0.7191899 1
10911 1.295207 -0.6665477 0.7191899 1
10912 1.295207 -0.6665477 0.7191899 1
10913 1.295207 -0.6665477 0.7191899 2
10914 1.295207 -0.6665477 0.7191899 2
10915 1.295207 -0.6665477 0.7191899 1
10916 1.295207 -0.6665477 0.7191899 2
10917 1.295207 -0.6665477 0.7191899 2
10918 1.295207 -0.6665477 0.7191899 2
10919 1.295207 -0.6665477 0.7191899 3
10920 1.295207 -0.6665477 0.7191899 1
10921 1.295207 -0.6665477 0.7191899 2
10922 1.295207 -0.6665477 0.7191899 1
10923 1.295207 -0.6665477 0.7191899 3
10924 1.295207 -0.6665477 0.7191899 1
10925 1.295207 -0.6665477 0.7191899 2
10926 1.295207 -0.6665477 0.7191899 2
10927 1.295207 -0.6665477 0.7191899 1
10928 1.295207 -0.6665477 0.7191899 1
10929 1.295207 -0.6665477 0.7191899 1
10930 1.295207 -0.6665477 0.7191899 3
10931 1.295207 -0.6665477 0.7191899 1
10932 1.295207 -0.6665477 0.7191899 3
10933 1.295207 -0.6665477 0.7191899 2
10934 1.295207 -0.6665477 0.7191899 3
10935 1.295207 -0.6665477 0.7191899 2
10936 1.295207 -0.6665477 0.7191899 2
10937 1.295207 -0.6665477 0.7191899 2
10938 1.295207 -0.6665477 0.7191899 2
10939 1.295207 -0.6665477 0.7191899 1
10940 1.295207 -0.6665477 0.7191899 2
10941 1.295207 -0.6665477 0.7191899 3
10942 1.295207 -0.6665477 0.7191899 3
10943 1.295207 -0.6665477 0.7191899 1
10944 1.295207 -0.6665477 0.7191899 2
10945 1.295207 -0.6665477 0.7191899 3
10946 1.295207 -0.6665477 0.7191899 1
10947 1.295207 -0.6665477 0.7191899 2
10948 1.295207 -0.6665477 0.7191899 1
10949 1.295207 -0.6665477 0.7191899 2
10950 1.295207 -0.6665477 0.7191899 2
10951 1.295207 -0.6665477 0.7191899 3
10952 1.295207 -0.6665477 0.7191899 2
10953 1.295207 -0.6665477 0.7191899 3
10954 1.295207 -0.6665477 0.7191899 2
10955 1.295207 -0.6665477 0.7191899 2
10956 1.295207 -0.6665477 0.7191899 1
10957 1.295207 -0.6665477 0.7191899 1
10958 1.295207 -0.6665477 0.7191899 1
10959 1.295207 -0.6665477 0.7191899 1
10960 1.295207 -0.6665477 0.7191899 2
10961 1.295207 -0.6665477 0.7191899 1
10962 1.295207 -0.6665477 0.7191899 1
10963 1.295207 -0.6665477 0.7191899 2
10964 1.295207 -0.6665477 0.7191899 1
10965 1.295207 -0.6665477 0.7191899 3
10966 1.295207 -0.6665477 0.7191899 1
10967 1.295207 -0.6665477 0.7191899 3
10968 1.295207 -0.6665477 0.7191899 3
10969 1.295207 -0.6665477 0.7191899 2
10970 1.295207 -0.6665477 0.7191899 1
10971 1.295207 -0.6665477 0.7191899 1
10972 1.295207 -0.6665477 0.7191899 1
10973 1.295207 -0.6665477 0.7191899 2
10974 1.295207 -0.6665477 0.7191899 3
10975 1.295207 -0.6665477 0.7191899 2
10976 1.295207 -0.6665477 0.7191899 3
10977 1.295207 -0.6665477 0.7191899 2
10978 1.295207 -0.6665477 0.7191899 3
10979 1.295207 -0.6665477 0.7191899 2
10980 1.295207 -0.6665477 0.7191899 1
10981 1.295207 -0.6665477 0.7191899 3
10982 1.295207 -0.6665477 0.7191899 1
10983 1.295207 -0.6665477 0.7191899 1
10984 1.295207 -0.6665477 0.7191899 3
10985 1.295207 -0.6665477 0.7191899 3
10986 1.295207 -0.6665477 0.7191899 1
10987 1.295207 -0.6665477 0.7191899 1
10988 1.295207 -0.6665477 0.7191899 1
10989 1.295207 -0.6665477 0.7191899 3
10990 1.295207 -0.6665477 0.7191899 1
10991 1.295207 -0.6665477 0.7191899 3
10992 1.295207 -0.6665477 0.7191899 1
10993 1.295207 -0.6665477 0.7191899 2
10994 1.295207 -0.6665477 0.7191899 1
10995 1.295207 -0.6665477 0.7191899 3
10996 1.295207 -0.6665477 0.7191899 1
10997 1.295207 -0.6665477 0.7191899 3
10998 1.295207 -0.6665477 0.7191899 3
10999 1.295207 -0.6665477 0.7191899 3
11000 1.295207 -0.6665477 0.7191899 3
11001 1.295207 -0.6665477 0.7191899 2
11002 1.295207 -0.6665477 0.7191899 3
11003 1.295207 -0.6665477 0.7191899 1
11004 1.295207 -0.6665477 0.7191899 1
11005 1.295207 -0.6665477 0.7191899 3
11006 1.295207 -0.6665477 0.7191899 3
11007 1.295207 -0.6665477 0.7191899 3
11008 1.295207 -0.6665477 0.7191899 1
11009 1.295207 -0.6665477 0.7191899 1
11010 1.295207 -0.6665477 0.7191899 2
11011 1.295207 -0.6665477 0.7191899 2
11012 1.295207 -0.6665477 0.7191899 1
11013 1.295207 -0.6665477 0.7191899 3
11014 1.295207 -0.6665477 0.7191899 3
11015 1.295207 -0.6665477 0.7191899 1
11016 1.295207 -0.6665477 0.7191899 3
11017 1.295207 -0.6665477 0.7191899 3
11018 1.295207 -0.6665477 0.7191899 3
11019 1.295207 -0.6665477 0.7191899 1
11020 1.295207 -0.6665477 0.7191899 2
11021 1.295207 -0.6665477 0.7191899 3
11022 1.295207 -0.6665477 0.7191899 3
11023 1.295207 -0.6665477 0.7191899 1
11024 1.295207 -0.6665477 0.7191899 2
11025 1.295207 -0.6665477 0.7191899 3
11026 1.295207 -0.6665477 0.7191899 2
11027 1.295207 -0.6665477 0.7191899 3
11028 1.295207 -0.6665477 0.7191899 1
11029 1.293890 -0.6732683 0.7274173 1
11030 1.293890 -0.6732683 0.7274173 3
11031 1.293890 -0.6732683 0.7274173 3
11032 1.293890 -0.6732683 0.7274173 2
11033 1.293890 -0.6732683 0.7274173 2
11034 1.293890 -0.6732683 0.7274173 1
11035 1.293890 -0.6732683 0.7274173 3
11036 1.293890 -0.6732683 0.7274173 2
11037 1.293890 -0.6732683 0.7274173 3
11038 1.293890 -0.6732683 0.7274173 1
11039 1.293890 -0.6732683 0.7274173 1
11040 1.293890 -0.6732683 0.7274173 2
11041 1.293890 -0.6732683 0.7274173 2
11042 1.293890 -0.6732683 0.7274173 2
11043 1.293890 -0.6732683 0.7274173 2
11044 1.293890 -0.6732683 0.7274173 3
11045 1.293890 -0.6732683 0.7274173 2
11046 1.293890 -0.6732683 0.7274173 2
11047 1.293890 -0.6732683 0.7274173 2
11048 1.293890 -0.6732683 0.7274173 2
11049 1.293890 -0.6732683 0.7274173 1
11050 1.293890 -0.6732683 0.7274173 3
11051 1.293890 -0.6732683 0.7274173 2
11052 1.293890 -0.6732683 0.7274173 2
11053 1.293890 -0.6732683 0.7274173 2
11054 1.293890 -0.6732683 0.7274173 3
11055 1.293890 -0.6732683 0.7274173 2
11056 1.293890 -0.6732683 0.7274173 1
11057 1.293890 -0.6732683 0.7274173 1
11058 1.293890 -0.6732683 0.7274173 3
11059 1.293890 -0.6732683 0.7274173 2
11060 1.293890 -0.6732683 0.7274173 2
11061 1.293890 -0.6732683 0.7274173 2
11062 1.293890 -0.6732683 0.7274173 1
11063 1.293890 -0.6732683 0.7274173 1
11064 1.293890 -0.6732683 0.7274173 3
11065 1.293890 -0.6732683 0.7274173 3
11066 1.293890 -0.6732683 0.7274173 3
11067 1.293890 -0.6732683 0.7274173 1
11068 1.293890 -0.6732683 0.7274173 3
11069 1.293890 -0.6732683 0.7274173 2
11070 1.293890 -0.6732683 0.7274173 3
11071 1.293890 -0.6732683 0.7274173 1
11072 1.293890 -0.6732683 0.7274173 2
11073 1.293890 -0.6732683 0.7274173 1
11074 1.293890 -0.6732683 0.7274173 2
11075 1.293890 -0.6732683 0.7274173 1
11076 1.293890 -0.6732683 0.7274173 1
11077 1.293890 -0.6732683 0.7274173 3
11078 1.293890 -0.6732683 0.7274173 2
11079 1.293890 -0.6732683 0.7274173 2
11080 1.293890 -0.6732683 0.7274173 3
11081 1.293890 -0.6732683 0.7274173 3
11082 1.293890 -0.6732683 0.7274173 3
11083 1.293890 -0.6732683 0.7274173 3
11084 1.293890 -0.6732683 0.7274173 2
11085 1.293890 -0.6732683 0.7274173 1
11086 1.293890 -0.6732683 0.7274173 2
11087 1.293890 -0.6732683 0.7274173 3
11088 1.293890 -0.6732683 0.7274173 3
11089 1.293890 -0.6732683 0.7274173 1
11090 1.293890 -0.6732683 0.7274173 1
11091 1.293890 -0.6732683 0.7274173 3
11092 1.293890 -0.6732683 0.7274173 2
11093 1.293890 -0.6732683 0.7274173 3
11094 1.293890 -0.6732683 0.7274173 2
11095 1.293890 -0.6732683 0.7274173 3
11096 1.293890 -0.6732683 0.7274173 2
11097 1.293890 -0.6732683 0.7274173 2
11098 1.293890 -0.6732683 0.7274173 3
11099 1.293890 -0.6732683 0.7274173 3
11100 1.293890 -0.6732683 0.7274173 2
11101 1.293890 -0.6732683 0.7274173 3
11102 1.293890 -0.6732683 0.7274173 1
11103 1.293890 -0.6732683 0.7274173 2
11104 1.293890 -0.6732683 0.7274173 1
11105 1.293890 -0.6732683 0.7274173 3
11106 1.293890 -0.6732683 0.7274173 2
11107 1.293890 -0.6732683 0.7274173 2
11108 1.293890 -0.6732683 0.7274173 3
11109 1.293890 -0.6732683 0.7274173 3
11110 1.293890 -0.6732683 0.7274173 1
11111 1.293890 -0.6732683 0.7274173 2
11112 1.293890 -0.6732683 0.7274173 2
11113 1.293890 -0.6732683 0.7274173 3
11114 1.293890 -0.6732683 0.7274173 1
11115 1.293890 -0.6732683 0.7274173 2
11116 1.293890 -0.6732683 0.7274173 2
11117 1.293890 -0.6732683 0.7274173 2
11118 1.293890 -0.6732683 0.7274173 3
11119 1.293890 -0.6732683 0.7274173 3
11120 1.293890 -0.6732683 0.7274173 1
11121 1.293890 -0.6732683 0.7274173 1
11122 1.293890 -0.6732683 0.7274173 2
11123 1.293890 -0.6732683 0.7274173 3
11124 1.293890 -0.6732683 0.7274173 3
11125 1.293890 -0.6732683 0.7274173 2
11126 1.293890 -0.6732683 0.7274173 1
11127 1.293890 -0.6732683 0.7274173 2
11128 1.293890 -0.6732683 0.7274173 1
11129 1.293890 -0.6732683 0.7274173 2
11130 1.293890 -0.6732683 0.7274173 3
11131 1.293890 -0.6732683 0.7274173 3
11132 1.293890 -0.6732683 0.7274173 3
11133 1.293890 -0.6732683 0.7274173 1
11134 1.293890 -0.6732683 0.7274173 1
11135 1.293890 -0.6732683 0.7274173 2
11136 1.293890 -0.6732683 0.7274173 2
11137 1.293890 -0.6732683 0.7274173 3
11138 1.293890 -0.6732683 0.7274173 2
11139 1.293890 -0.6732683 0.7274173 1
11140 1.293890 -0.6732683 0.7274173 3
11141 1.293890 -0.6732683 0.7274173 3
11142 1.293890 -0.6732683 0.7274173 3
11143 1.293890 -0.6732683 0.7274173 2
11144 1.293890 -0.6732683 0.7274173 3
11145 1.293890 -0.6732683 0.7274173 1
11146 1.293890 -0.6732683 0.7274173 3
11147 1.293890 -0.6732683 0.7274173 1
11148 1.293890 -0.6732683 0.7274173 1
11149 1.293890 -0.6732683 0.7274173 1
11150 1.293890 -0.6732683 0.7274173 2
11151 1.293890 -0.6732683 0.7274173 3
11152 1.293890 -0.6732683 0.7274173 1
11153 1.293890 -0.6732683 0.7274173 1
11154 1.293890 -0.6732683 0.7274173 3
11155 1.293890 -0.6732683 0.7274173 3
11156 1.293890 -0.6732683 0.7274173 2
11157 1.293890 -0.6732683 0.7274173 2
11158 1.293890 -0.6732683 0.7274173 3
11159 1.293890 -0.6732683 0.7274173 2
11160 1.293890 -0.6732683 0.7274173 2
11161 1.293890 -0.6732683 0.7274173 3
11162 1.293890 -0.6732683 0.7274173 1
11163 1.293890 -0.6732683 0.7274173 1
11164 1.293890 -0.6732683 0.7274173 2
11165 1.293890 -0.6732683 0.7274173 3
11166 1.293890 -0.6732683 0.7274173 2
11167 1.293890 -0.6732683 0.7274173 2
11168 1.293890 -0.6732683 0.7274173 2
11169 1.293890 -0.6732683 0.7274173 2
11170 1.293890 -0.6732683 0.7274173 1
11171 1.293890 -0.6732683 0.7274173 2
11172 1.293890 -0.6732683 0.7274173 1
11173 1.293890 -0.6732683 0.7274173 2
11174 1.293890 -0.6732683 0.7274173 3
11175 1.293890 -0.6732683 0.7274173 3
11176 1.293890 -0.6732683 0.7274173 2
11177 1.293890 -0.6732683 0.7274173 1
11178 1.293890 -0.6732683 0.7274173 1
11179 1.293890 -0.6732683 0.7274173 2
11180 1.293890 -0.6732683 0.7274173 2
11181 1.293890 -0.6732683 0.7274173 2
11182 1.293890 -0.6732683 0.7274173 3
11183 1.293890 -0.6732683 0.7274173 3
11184 1.293890 -0.6732683 0.7274173 2
11185 1.293890 -0.6732683 0.7274173 1
11186 1.293890 -0.6732683 0.7274173 1
11187 1.293890 -0.6732683 0.7274173 1
11188 1.293890 -0.6732683 0.7274173 2
11189 1.293890 -0.6732683 0.7274173 3
11190 1.293890 -0.6732683 0.7274173 1
11191 1.293890 -0.6732683 0.7274173 3
11192 1.293890 -0.6732683 0.7274173 1
11193 1.293890 -0.6732683 0.7274173 3
11194 1.293890 -0.6732683 0.7274173 2
11195 1.293890 -0.6732683 0.7274173 2
11196 1.293890 -0.6732683 0.7274173 3
11197 1.293890 -0.6732683 0.7274173 2
11198 1.293890 -0.6732683 0.7274173 2
11199 1.293890 -0.6732683 0.7274173 2
11200 1.293890 -0.6732683 0.7274173 3
11201 1.293890 -0.6732683 0.7274173 3
11202 1.293890 -0.6732683 0.7274173 2
11203 1.293890 -0.6732683 0.7274173 1
11204 1.293890 -0.6732683 0.7274173 3
11205 1.293890 -0.6732683 0.7274173 2
11206 1.293890 -0.6732683 0.7274173 2
11207 1.293890 -0.6732683 0.7274173 3
11208 1.293890 -0.6732683 0.7274173 2
11209 1.293890 -0.6732683 0.7274173 3
11210 1.293890 -0.6732683 0.7274173 2
11211 1.293890 -0.6732683 0.7274173 1
11212 1.293890 -0.6732683 0.7274173 2
11213 1.293890 -0.6732683 0.7274173 3
11214 1.293890 -0.6732683 0.7274173 2
11215 1.293890 -0.6732683 0.7274173 2
11216 1.293890 -0.6732683 0.7274173 3
11217 1.293890 -0.6732683 0.7274173 3
11218 1.293890 -0.6732683 0.7274173 1
11219 1.293890 -0.6732683 0.7274173 1
11220 1.293890 -0.6732683 0.7274173 1
11221 1.293890 -0.6732683 0.7274173 3
11222 1.293890 -0.6732683 0.7274173 2
11223 1.293890 -0.6732683 0.7274173 3
11224 1.293890 -0.6732683 0.7274173 1
11225 1.293890 -0.6732683 0.7274173 1
11226 1.293890 -0.6732683 0.7274173 1
11227 1.293890 -0.6732683 0.7274173 1
11228 1.293890 -0.6732683 0.7274173 2
11229 1.293890 -0.6732683 0.7274173 1
11230 1.293890 -0.6732683 0.7274173 1
11231 1.293890 -0.6732683 0.7274173 3
11232 1.293890 -0.6732683 0.7274173 1
11233 1.293890 -0.6732683 0.7274173 1
11234 1.293890 -0.6732683 0.7274173 3
11235 1.293890 -0.6732683 0.7274173 3
11236 1.293890 -0.6732683 0.7274173 3
11237 1.293890 -0.6732683 0.7274173 2
11238 1.293890 -0.6732683 0.7274173 3
11239 1.293890 -0.6732683 0.7274173 2
11240 1.293890 -0.6732683 0.7274173 3
11241 1.293890 -0.6732683 0.7274173 2
11242 1.293890 -0.6732683 0.7274173 1
11243 1.293890 -0.6732683 0.7274173 3
11244 1.293890 -0.6732683 0.7274173 2
11245 1.293890 -0.6732683 0.7274173 2
11246 1.293890 -0.6732683 0.7274173 2
11247 1.293890 -0.6732683 0.7274173 2
11248 1.293890 -0.6732683 0.7274173 3
11249 1.293890 -0.6732683 0.7274173 1
11250 1.293890 -0.6732683 0.7274173 3
11251 1.293890 -0.6732683 0.7274173 2
11252 1.293890 -0.6732683 0.7274173 1
11253 1.293890 -0.6732683 0.7274173 3
11254 1.293890 -0.6732683 0.7274173 2
11255 1.293890 -0.6732683 0.7274173 3
11256 1.293890 -0.6732683 0.7274173 2
11257 1.293890 -0.6732683 0.7274173 2
11258 1.293890 -0.6732683 0.7274173 1
11259 1.293890 -0.6732683 0.7274173 3
11260 1.293890 -0.6732683 0.7274173 1
11261 1.293890 -0.6732683 0.7274173 1
11262 1.293890 -0.6732683 0.7274173 1
11263 1.293890 -0.6732683 0.7274173 1
11264 1.293890 -0.6732683 0.7274173 3
11265 1.293890 -0.6732683 0.7274173 2
11266 1.293890 -0.6732683 0.7274173 2
11267 1.293890 -0.6732683 0.7274173 1
11268 1.293890 -0.6732683 0.7274173 3
11269 1.293890 -0.6732683 0.7274173 1
11270 1.293890 -0.6732683 0.7274173 2
11271 1.293890 -0.6732683 0.7274173 2
11272 1.293890 -0.6732683 0.7274173 3
11273 1.293890 -0.6732683 0.7274173 3
11274 1.293890 -0.6732683 0.7274173 3
11275 1.293890 -0.6732683 0.7274173 2
11276 1.293890 -0.6732683 0.7274173 1
11277 1.293890 -0.6732683 0.7274173 2
11278 1.293890 -0.6732683 0.7274173 2
11279 1.293890 -0.6732683 0.7274173 3
11280 1.293890 -0.6732683 0.7274173 2
11281 1.293890 -0.6732683 0.7274173 1
11282 1.293890 -0.6732683 0.7274173 2
11283 1.293890 -0.6732683 0.7274173 2
11284 1.293890 -0.6732683 0.7274173 3
11285 1.293890 -0.6732683 0.7274173 2
11286 1.293890 -0.6732683 0.7274173 3
11287 1.293890 -0.6732683 0.7274173 1
11288 1.293890 -0.6732683 0.7274173 1
11289 1.293890 -0.6732683 0.7274173 1
11290 1.293890 -0.6732683 0.7274173 2
11291 1.293890 -0.6732683 0.7274173 2
11292 1.293890 -0.6732683 0.7274173 1
11293 1.293890 -0.6732683 0.7274173 2
11294 1.293890 -0.6732683 0.7274173 2
11295 1.293890 -0.6732683 0.7274173 1
11296 1.293890 -0.6732683 0.7274173 1
11297 1.293890 -0.6732683 0.7274173 3
11298 1.293890 -0.6732683 0.7274173 2
11299 1.293890 -0.6732683 0.7274173 1
11300 1.293890 -0.6732683 0.7274173 3
11301 1.293890 -0.6732683 0.7274173 1
11302 1.293890 -0.6732683 0.7274173 3
11303 1.293890 -0.6732683 0.7274173 2
11304 1.293890 -0.6732683 0.7274173 2
11305 1.293890 -0.6732683 0.7274173 2
11306 1.293890 -0.6732683 0.7274173 2
11307 1.293890 -0.6732683 0.7274173 3
11308 1.293890 -0.6732683 0.7274173 3
11309 1.293890 -0.6732683 0.7274173 2
11310 1.293890 -0.6732683 0.7274173 2
11311 1.293890 -0.6732683 0.7274173 2
11312 1.293890 -0.6732683 0.7274173 3
11313 1.293890 -0.6732683 0.7274173 3
11314 1.293890 -0.6732683 0.7274173 1
11315 1.293890 -0.6732683 0.7274173 3
11316 1.293890 -0.6732683 0.7274173 2
11317 1.293890 -0.6732683 0.7274173 1
11318 1.293890 -0.6732683 0.7274173 3
11319 1.293890 -0.6732683 0.7274173 2
11320 1.293890 -0.6732683 0.7274173 1
11321 1.293890 -0.6732683 0.7274173 1
11322 1.293890 -0.6732683 0.7274173 3
11323 1.293890 -0.6732683 0.7274173 3
11324 1.293890 -0.6732683 0.7274173 2
11325 1.293890 -0.6732683 0.7274173 2
11326 1.293890 -0.6732683 0.7274173 3
11327 1.293890 -0.6732683 0.7274173 1
11328 1.293890 -0.6732683 0.7274173 1
11329 1.293890 -0.6732683 0.7274173 1
11330 1.293890 -0.6732683 0.7274173 3
11331 1.293890 -0.6732683 0.7274173 2
11332 1.293890 -0.6732683 0.7274173 2
11333 1.293890 -0.6732683 0.7274173 3
11334 1.293890 -0.6732683 0.7274173 2
11335 1.293890 -0.6732683 0.7274173 2
11336 1.293890 -0.6732683 0.7274173 2
11337 1.293890 -0.6732683 0.7274173 1
11338 1.293890 -0.6732683 0.7274173 3
11339 1.293890 -0.6732683 0.7274173 2
11340 1.293890 -0.6732683 0.7274173 3
11341 1.293890 -0.6732683 0.7274173 3
11342 1.293890 -0.6732683 0.7274173 1
11343 1.293890 -0.6732683 0.7274173 2
11344 1.293890 -0.6732683 0.7274173 2
11345 1.293890 -0.6732683 0.7274173 1
11346 1.293890 -0.6732683 0.7274173 3
11347 1.293890 -0.6732683 0.7274173 3
11348 1.293890 -0.6732683 0.7274173 2
11349 1.293890 -0.6732683 0.7274173 3
11350 1.293890 -0.6732683 0.7274173 1
11351 1.293890 -0.6732683 0.7274173 3
11352 1.293890 -0.6732683 0.7274173 3
11353 1.293890 -0.6732683 0.7274173 2
11354 1.293890 -0.6732683 0.7274173 3
11355 1.293890 -0.6732683 0.7274173 2
11356 1.293890 -0.6732683 0.7274173 1
11357 1.293890 -0.6732683 0.7274173 2
11358 1.293890 -0.6732683 0.7274173 2
11359 1.293890 -0.6732683 0.7274173 1
11360 1.293890 -0.6732683 0.7274173 3
11361 1.293890 -0.6732683 0.7274173 3
11362 1.293890 -0.6732683 0.7274173 3
11363 1.293890 -0.6732683 0.7274173 2
11364 1.293890 -0.6732683 0.7274173 2
11365 1.293890 -0.6732683 0.7274173 2
11366 1.293890 -0.6732683 0.7274173 1
11367 1.293890 -0.6732683 0.7274173 1
11368 1.293890 -0.6732683 0.7274173 1
11369 1.293890 -0.6732683 0.7274173 3
11370 1.293890 -0.6732683 0.7274173 3
11371 1.293890 -0.6732683 0.7274173 3
11372 1.293890 -0.6732683 0.7274173 1
11373 1.293890 -0.6732683 0.7274173 2
11374 1.293890 -0.6732683 0.7274173 2
11375 1.293890 -0.6732683 0.7274173 1
11376 1.293890 -0.6732683 0.7274173 1
11377 1.293890 -0.6732683 0.7274173 2
11378 1.293890 -0.6732683 0.7274173 1
11379 1.293890 -0.6732683 0.7274173 2
11380 1.293890 -0.6732683 0.7274173 3
11381 1.293890 -0.6732683 0.7274173 3
11382 1.293890 -0.6732683 0.7274173 3
11383 1.293890 -0.6732683 0.7274173 3
11384 1.293890 -0.6732683 0.7274173 2
11385 1.293890 -0.6732683 0.7274173 2
11386 1.293890 -0.6732683 0.7274173 3
11387 1.293890 -0.6732683 0.7274173 2
11388 1.293890 -0.6732683 0.7274173 3
11389 1.293890 -0.6732683 0.7274173 2
11390 1.293890 -0.6732683 0.7274173 2
11391 1.293890 -0.6732683 0.7274173 1
11392 1.293890 -0.6732683 0.7274173 1
11393 1.293890 -0.6732683 0.7274173 3
11394 1.293890 -0.6732683 0.7274173 3
11395 1.293890 -0.6732683 0.7274173 3
11396 1.293890 -0.6732683 0.7274173 3
11397 1.293890 -0.6732683 0.7274173 3
11398 1.293890 -0.6732683 0.7274173 1
11399 1.293890 -0.6732683 0.7274173 2
11400 1.293890 -0.6732683 0.7274173 1
11401 1.293890 -0.6732683 0.7274173 3
11402 1.293890 -0.6732683 0.7274173 1
11403 1.293890 -0.6732683 0.7274173 3
11404 1.293890 -0.6732683 0.7274173 3
11405 1.293890 -0.6732683 0.7274173 1
11406 1.293890 -0.6732683 0.7274173 1
11407 1.293890 -0.6732683 0.7274173 3
11408 1.293890 -0.6732683 0.7274173 2
11409 1.293890 -0.6732683 0.7274173 2
11410 1.293890 -0.6732683 0.7274173 2
11411 1.293890 -0.6732683 0.7274173 1
11412 1.293890 -0.6732683 0.7274173 3
11413 1.293890 -0.6732683 0.7274173 3
11414 1.293890 -0.6732683 0.7274173 3
11415 1.293890 -0.6732683 0.7274173 1
11416 1.293890 -0.6732683 0.7274173 2
11417 1.293890 -0.6732683 0.7274173 2
11418 1.293890 -0.6732683 0.7274173 3
11419 1.293890 -0.6732683 0.7274173 1
11420 1.293890 -0.6732683 0.7274173 1
11421 1.293890 -0.6732683 0.7274173 3
11422 1.293890 -0.6732683 0.7274173 1
11423 1.293890 -0.6732683 0.7274173 1
11424 1.293890 -0.6732683 0.7274173 3
11425 1.293890 -0.6732683 0.7274173 2
11426 1.293890 -0.6732683 0.7274173 1
11427 1.293890 -0.6732683 0.7274173 3
11428 1.293890 -0.6732683 0.7274173 3
11429 1.293890 -0.6732683 0.7274173 3
11430 1.293890 -0.6732683 0.7274173 1
11431 1.293890 -0.6732683 0.7274173 2
11432 1.293890 -0.6732683 0.7274173 2
11433 1.293890 -0.6732683 0.7274173 3
11434 1.293890 -0.6732683 0.7274173 1
11435 1.293890 -0.6732683 0.7274173 1
11436 1.293890 -0.6732683 0.7274173 3
11437 1.293890 -0.6732683 0.7274173 1
11438 1.293890 -0.6732683 0.7274173 2
11439 1.293890 -0.6732683 0.7274173 2
11440 1.293890 -0.6732683 0.7274173 2
11441 1.293890 -0.6732683 0.7274173 3
11442 1.293890 -0.6732683 0.7274173 3
11443 1.293890 -0.6732683 0.7274173 1
11444 1.293890 -0.6732683 0.7274173 2
11445 1.293890 -0.6732683 0.7274173 1
11446 1.293890 -0.6732683 0.7274173 2
11447 1.293890 -0.6732683 0.7274173 1
11448 1.293890 -0.6732683 0.7274173 2
11449 1.293890 -0.6732683 0.7274173 2
11450 1.293890 -0.6732683 0.7274173 1
11451 1.293890 -0.6732683 0.7274173 2
11452 1.293890 -0.6732683 0.7274173 3
11453 1.293890 -0.6732683 0.7274173 1
11454 1.293890 -0.6732683 0.7274173 3
11455 1.293890 -0.6732683 0.7274173 3
11456 1.293890 -0.6732683 0.7274173 1
11457 1.293890 -0.6732683 0.7274173 1
11458 1.293890 -0.6732683 0.7274173 1
11459 1.293890 -0.6732683 0.7274173 1
11460 1.293890 -0.6732683 0.7274173 3
11461 1.293890 -0.6732683 0.7274173 2
11462 1.293890 -0.6732683 0.7274173 3
11463 1.293890 -0.6732683 0.7274173 3
11464 1.293890 -0.6732683 0.7274173 3
11465 1.293890 -0.6732683 0.7274173 1
11466 1.293890 -0.6732683 0.7274173 2
11467 1.293890 -0.6732683 0.7274173 2
11468 1.293890 -0.6732683 0.7274173 2
11469 1.293890 -0.6732683 0.7274173 1
11470 1.293890 -0.6732683 0.7274173 1
11471 1.293890 -0.6732683 0.7274173 3
11472 1.293890 -0.6732683 0.7274173 2
11473 1.293890 -0.6732683 0.7274173 2
11474 1.293890 -0.6732683 0.7274173 3
11475 1.293890 -0.6732683 0.7274173 3
11476 1.293890 -0.6732683 0.7274173 3
11477 1.293890 -0.6732683 0.7274173 3
11478 1.293890 -0.6732683 0.7274173 3
11479 1.293890 -0.6732683 0.7274173 1
11480 1.293890 -0.6732683 0.7274173 1
11481 1.293890 -0.6732683 0.7274173 1
11482 1.293890 -0.6732683 0.7274173 1
11483 1.293890 -0.6732683 0.7274173 2
11484 1.293890 -0.6732683 0.7274173 2
11485 1.293890 -0.6732683 0.7274173 2
11486 1.293890 -0.6732683 0.7274173 1
11487 1.293890 -0.6732683 0.7274173 3
11488 1.293890 -0.6732683 0.7274173 1
11489 1.293890 -0.6732683 0.7274173 1
11490 1.293890 -0.6732683 0.7274173 2
11491 1.293890 -0.6732683 0.7274173 1
11492 1.293890 -0.6732683 0.7274173 1
11493 1.293890 -0.6732683 0.7274173 3
11494 1.293890 -0.6732683 0.7274173 1
11495 1.293890 -0.6732683 0.7274173 2
11496 1.293890 -0.6732683 0.7274173 2
11497 1.293890 -0.6732683 0.7274173 3
11498 1.293890 -0.6732683 0.7274173 2
11499 1.293890 -0.6732683 0.7274173 3
11500 1.293890 -0.6732683 0.7274173 1
11501 1.293890 -0.6732683 0.7274173 2
11502 1.293890 -0.6732683 0.7274173 1
11503 1.293890 -0.6732683 0.7274173 1
11504 1.293890 -0.6732683 0.7274173 2
11505 1.293890 -0.6732683 0.7274173 3
11506 1.293890 -0.6732683 0.7274173 1
11507 1.293890 -0.6732683 0.7274173 2
11508 1.293890 -0.6732683 0.7274173 2
11509 1.293890 -0.6732683 0.7274173 2
11510 1.293890 -0.6732683 0.7274173 1
11511 1.293890 -0.6732683 0.7274173 1
11512 1.293890 -0.6732683 0.7274173 2
11513 1.293890 -0.6732683 0.7274173 1
11514 1.293890 -0.6732683 0.7274173 2
11515 1.293890 -0.6732683 0.7274173 2
11516 1.293890 -0.6732683 0.7274173 2
11517 1.293890 -0.6732683 0.7274173 2
11518 1.293890 -0.6732683 0.7274173 1
11519 1.293890 -0.6732683 0.7274173 2
11520 1.293890 -0.6732683 0.7274173 1
11521 1.293890 -0.6732683 0.7274173 3
11522 1.293890 -0.6732683 0.7274173 2
11523 1.293890 -0.6732683 0.7274173 1
11524 1.293890 -0.6732683 0.7274173 2
11525 1.293890 -0.6732683 0.7274173 3
11526 1.293890 -0.6732683 0.7274173 1
11527 1.293890 -0.6732683 0.7274173 1
11528 1.293890 -0.6732683 0.7274173 1
11529 1.293890 -0.6732683 0.7274173 1
11530 1.293890 -0.6732683 0.7274173 3
11531 1.293890 -0.6732683 0.7274173 3
11532 1.293890 -0.6732683 0.7274173 2
11533 1.293890 -0.6732683 0.7274173 1
11534 1.293890 -0.6732683 0.7274173 3
11535 1.293890 -0.6732683 0.7274173 3
11536 1.293890 -0.6732683 0.7274173 2
11537 1.293890 -0.6732683 0.7274173 3
11538 1.293890 -0.6732683 0.7274173 3
11539 1.293890 -0.6732683 0.7274173 3
11540 1.293890 -0.6732683 0.7274173 3
11541 1.293890 -0.6732683 0.7274173 3
11542 1.293890 -0.6732683 0.7274173 3
11543 1.293890 -0.6732683 0.7274173 1
11544 1.293890 -0.6732683 0.7274173 1
11545 1.293890 -0.6732683 0.7274173 1
11546 1.293890 -0.6732683 0.7274173 2
11547 1.293890 -0.6732683 0.7274173 1
11548 1.293890 -0.6732683 0.7274173 2
11549 1.293890 -0.6732683 0.7274173 1
11550 1.293890 -0.6732683 0.7274173 3
11551 1.293890 -0.6732683 0.7274173 2
11552 1.293890 -0.6732683 0.7274173 2
11553 1.293890 -0.6732683 0.7274173 1
11554 1.293890 -0.6732683 0.7274173 1
11555 1.293890 -0.6732683 0.7274173 2
11556 1.293890 -0.6732683 0.7274173 1
11557 1.293890 -0.6732683 0.7274173 2
11558 1.293890 -0.6732683 0.7274173 3
11559 1.293890 -0.6732683 0.7274173 1
11560 1.293890 -0.6732683 0.7274173 2
11561 1.293890 -0.6732683 0.7274173 2
11562 1.293890 -0.6732683 0.7274173 1
11563 1.293890 -0.6732683 0.7274173 1
11564 1.293890 -0.6732683 0.7274173 1
11565 1.293890 -0.6732683 0.7274173 3
11566 1.293890 -0.6732683 0.7274173 2
11567 1.293890 -0.6732683 0.7274173 3
11568 1.293890 -0.6732683 0.7274173 3
11569 1.293890 -0.6732683 0.7274173 3
11570 1.293890 -0.6732683 0.7274173 2
11571 1.293890 -0.6732683 0.7274173 2
11572 1.293890 -0.6732683 0.7274173 2
11573 1.293890 -0.6732683 0.7274173 2
11574 1.293890 -0.6732683 0.7274173 1
11575 1.293890 -0.6732683 0.7274173 3
11576 1.293890 -0.6732683 0.7274173 3
11577 1.293890 -0.6732683 0.7274173 2
11578 1.293890 -0.6732683 0.7274173 3
11579 1.293890 -0.6732683 0.7274173 3
11580 1.293890 -0.6732683 0.7274173 1
11581 1.293890 -0.6732683 0.7274173 3
11582 1.293890 -0.6732683 0.7274173 1
11583 1.293890 -0.6732683 0.7274173 1
11584 1.293890 -0.6732683 0.7274173 2
11585 1.293890 -0.6732683 0.7274173 3
11586 1.293890 -0.6732683 0.7274173 2
11587 1.293890 -0.6732683 0.7274173 2
11588 1.293890 -0.6732683 0.7274173 3
11589 1.293890 -0.6732683 0.7274173 1
11590 1.293890 -0.6732683 0.7274173 3
11591 1.293890 -0.6732683 0.7274173 3
11592 1.293890 -0.6732683 0.7274173 2
11593 1.293890 -0.6732683 0.7274173 3
11594 1.293890 -0.6732683 0.7274173 1
11595 1.293890 -0.6732683 0.7274173 3
11596 1.293890 -0.6732683 0.7274173 3
11597 1.293890 -0.6732683 0.7274173 3
11598 1.293890 -0.6732683 0.7274173 3
11599 1.293890 -0.6732683 0.7274173 2
11600 1.293890 -0.6732683 0.7274173 2
11601 1.293890 -0.6732683 0.7274173 1
11602 1.293890 -0.6732683 0.7274173 2
11603 1.293890 -0.6732683 0.7274173 3
11604 1.293890 -0.6732683 0.7274173 2
11605 1.293890 -0.6732683 0.7274173 1
11606 1.293890 -0.6732683 0.7274173 1
11607 1.293890 -0.6732683 0.7274173 2
11608 1.293890 -0.6732683 0.7274173 2
11609 1.293890 -0.6732683 0.7274173 3
11610 1.293890 -0.6732683 0.7274173 2
11611 1.293890 -0.6732683 0.7274173 3
11612 1.293890 -0.6732683 0.7274173 2
11613 1.293890 -0.6732683 0.7274173 1
11614 1.293890 -0.6732683 0.7274173 3
11615 1.293890 -0.6732683 0.7274173 1
11616 1.293890 -0.6732683 0.7274173 2
11617 1.293890 -0.6732683 0.7274173 1
11618 1.293890 -0.6732683 0.7274173 1
11619 1.293890 -0.6732683 0.7274173 1
11620 1.293890 -0.6732683 0.7274173 2
11621 1.293890 -0.6732683 0.7274173 1
11622 1.293890 -0.6732683 0.7274173 3
11623 1.293890 -0.6732683 0.7274173 2
11624 1.293890 -0.6732683 0.7274173 1
11625 1.293890 -0.6732683 0.7274173 3
11626 1.293890 -0.6732683 0.7274173 3
11627 1.293890 -0.6732683 0.7274173 3
11628 1.293890 -0.6732683 0.7274173 3
11629 1.293890 -0.6732683 0.7274173 3
11630 1.293890 -0.6732683 0.7274173 2
11631 1.293890 -0.6732683 0.7274173 2
11632 1.293890 -0.6732683 0.7274173 3
11633 1.293890 -0.6732683 0.7274173 2
11634 1.293890 -0.6732683 0.7274173 1
11635 1.293890 -0.6732683 0.7274173 1
11636 1.293890 -0.6732683 0.7274173 2
11637 1.293890 -0.6732683 0.7274173 1
11638 1.293890 -0.6732683 0.7274173 2
11639 1.293890 -0.6732683 0.7274173 3
11640 1.293890 -0.6732683 0.7274173 3
11641 1.293890 -0.6732683 0.7274173 3
11642 1.293890 -0.6732683 0.7274173 3
11643 1.293890 -0.6732683 0.7274173 1
11644 1.293890 -0.6732683 0.7274173 3
11645 1.293890 -0.6732683 0.7274173 1
11646 1.293890 -0.6732683 0.7274173 3
11647 1.293890 -0.6732683 0.7274173 2
11648 1.293890 -0.6732683 0.7274173 3
11649 1.293890 -0.6732683 0.7274173 3
11650 1.293890 -0.6732683 0.7274173 2
11651 1.293890 -0.6732683 0.7274173 3
11652 1.293890 -0.6732683 0.7274173 3
11653 1.293890 -0.6732683 0.7274173 3
11654 1.293890 -0.6732683 0.7274173 3
11655 1.293890 -0.6732683 0.7274173 3
11656 1.293890 -0.6732683 0.7274173 2
11657 1.293890 -0.6732683 0.7274173 2
11658 1.293890 -0.6732683 0.7274173 2
11659 1.293890 -0.6732683 0.7274173 2
11660 1.293890 -0.6732683 0.7274173 3
11661 1.293890 -0.6732683 0.7274173 1
11662 1.293890 -0.6732683 0.7274173 1
11663 1.293890 -0.6732683 0.7274173 1
11664 1.293890 -0.6732683 0.7274173 1
11665 1.293890 -0.6732683 0.7274173 3
11666 1.293890 -0.6732683 0.7274173 2
11667 1.293890 -0.6732683 0.7274173 2
11668 1.293890 -0.6732683 0.7274173 1
11669 1.293890 -0.6732683 0.7274173 2
11670 1.293890 -0.6732683 0.7274173 1
11671 1.293890 -0.6732683 0.7274173 2
11672 1.293890 -0.6732683 0.7274173 1
11673 1.293890 -0.6732683 0.7274173 3
11674 1.293890 -0.6732683 0.7274173 3
11675 1.293890 -0.6732683 0.7274173 1
11676 1.293890 -0.6732683 0.7274173 1
11677 1.293890 -0.6732683 0.7274173 1
11678 1.293890 -0.6732683 0.7274173 1
11679 1.293890 -0.6732683 0.7274173 1
11680 1.293890 -0.6732683 0.7274173 3
11681 1.293890 -0.6732683 0.7274173 1
11682 1.293890 -0.6732683 0.7274173 2
11683 1.293890 -0.6732683 0.7274173 1
11684 1.293890 -0.6732683 0.7274173 1
11685 1.293890 -0.6732683 0.7274173 2
11686 1.293890 -0.6732683 0.7274173 1
11687 1.293890 -0.6732683 0.7274173 1
11688 1.293890 -0.6732683 0.7274173 1
11689 1.293890 -0.6732683 0.7274173 1
11690 1.293890 -0.6732683 0.7274173 2
11691 1.293890 -0.6732683 0.7274173 2
11692 1.293890 -0.6732683 0.7274173 3
11693 1.293890 -0.6732683 0.7274173 3
11694 1.293890 -0.6732683 0.7274173 3
11695 1.293890 -0.6732683 0.7274173 1
11696 1.293890 -0.6732683 0.7274173 2
11697 1.293890 -0.6732683 0.7274173 2
11698 1.293890 -0.6732683 0.7274173 2
11699 1.293890 -0.6732683 0.7274173 3
11700 1.293890 -0.6732683 0.7274173 1
11701 1.293890 -0.6732683 0.7274173 2
11702 1.293890 -0.6732683 0.7274173 1
11703 1.293890 -0.6732683 0.7274173 2
11704 1.293890 -0.6732683 0.7274173 2
11705 1.293890 -0.6732683 0.7274173 2
11706 1.293890 -0.6732683 0.7274173 1
11707 1.293890 -0.6732683 0.7274173 1
11708 1.293890 -0.6732683 0.7274173 2
11709 1.293890 -0.6732683 0.7274173 3
11710 1.293890 -0.6732683 0.7274173 1
11711 1.293890 -0.6732683 0.7274173 2
11712 1.293890 -0.6732683 0.7274173 1
11713 1.293890 -0.6732683 0.7274173 2
11714 1.293890 -0.6732683 0.7274173 3
11715 1.293890 -0.6732683 0.7274173 2
11716 1.293890 -0.6732683 0.7274173 2
11717 1.293890 -0.6732683 0.7274173 2
11718 1.293890 -0.6732683 0.7274173 2
11719 1.293890 -0.6732683 0.7274173 2
11720 1.293890 -0.6732683 0.7274173 3
11721 1.293890 -0.6732683 0.7274173 2
11722 1.293890 -0.6732683 0.7274173 1
11723 1.293890 -0.6732683 0.7274173 2
11724 1.293890 -0.6732683 0.7274173 3
11725 1.293890 -0.6732683 0.7274173 3
11726 1.293890 -0.6732683 0.7274173 1
11727 1.293890 -0.6732683 0.7274173 2
11728 1.293890 -0.6732683 0.7274173 2
11729 1.293890 -0.6732683 0.7274173 3
11730 1.293890 -0.6732683 0.7274173 2
11731 1.293890 -0.6732683 0.7274173 3
11732 1.293890 -0.6732683 0.7274173 1
11733 1.293890 -0.6732683 0.7274173 2
11734 1.293890 -0.6732683 0.7274173 3
11735 1.293890 -0.6732683 0.7274173 2
11736 1.293890 -0.6732683 0.7274173 3
11737 1.293890 -0.6732683 0.7274173 2
11738 1.293890 -0.6732683 0.7274173 1
11739 1.293890 -0.6732683 0.7274173 1
11740 1.293890 -0.6732683 0.7274173 1
11741 1.293890 -0.6732683 0.7274173 1
11742 1.293890 -0.6732683 0.7274173 3
11743 1.293890 -0.6732683 0.7274173 1
11744 1.293890 -0.6732683 0.7274173 1
11745 1.293890 -0.6732683 0.7274173 1
11746 1.293890 -0.6732683 0.7274173 1
11747 1.293890 -0.6732683 0.7274173 3
11748 1.293890 -0.6732683 0.7274173 3
11749 1.293890 -0.6732683 0.7274173 2
11750 1.293890 -0.6732683 0.7274173 1
11751 1.293890 -0.6732683 0.7274173 2
11752 1.293890 -0.6732683 0.7274173 3
11753 1.293890 -0.6732683 0.7274173 2
11754 1.293890 -0.6732683 0.7274173 1
11755 1.293890 -0.6732683 0.7274173 1
11756 1.293890 -0.6732683 0.7274173 1
11757 1.293890 -0.6732683 0.7274173 2
11758 1.293890 -0.6732683 0.7274173 3
11759 1.293890 -0.6732683 0.7274173 1
11760 1.293890 -0.6732683 0.7274173 2
11761 1.293890 -0.6732683 0.7274173 2
11762 1.293890 -0.6732683 0.7274173 1
11763 1.293890 -0.6732683 0.7274173 3
11764 1.293890 -0.6732683 0.7274173 3
11765 1.293890 -0.6732683 0.7274173 2
11766 1.293890 -0.6732683 0.7274173 2
11767 1.293890 -0.6732683 0.7274173 2
11768 1.293890 -0.6732683 0.7274173 2
11769 1.293890 -0.6732683 0.7274173 3
11770 1.293890 -0.6732683 0.7274173 2
11771 1.293890 -0.6732683 0.7274173 1
11772 1.293890 -0.6732683 0.7274173 2
11773 1.293890 -0.6732683 0.7274173 1
11774 1.293890 -0.6732683 0.7274173 2
11775 1.293890 -0.6732683 0.7274173 3
11776 1.293890 -0.6732683 0.7274173 1
11777 1.293890 -0.6732683 0.7274173 1
11778 1.293890 -0.6732683 0.7274173 1
11779 1.293890 -0.6732683 0.7274173 3
11780 1.293890 -0.6732683 0.7274173 3
11781 1.293890 -0.6732683 0.7274173 2
11782 1.293890 -0.6732683 0.7274173 3
11783 1.293890 -0.6732683 0.7274173 3
11784 1.293890 -0.6732683 0.7274173 2
11785 1.293890 -0.6732683 0.7274173 3
11786 1.293890 -0.6732683 0.7274173 2
11787 1.293890 -0.6732683 0.7274173 2
11788 1.293890 -0.6732683 0.7274173 1
11789 1.293890 -0.6732683 0.7274173 3
11790 1.293890 -0.6732683 0.7274173 3
11791 1.293890 -0.6732683 0.7274173 1
11792 1.293890 -0.6732683 0.7274173 3
11793 1.293890 -0.6732683 0.7274173 2
11794 1.293890 -0.6732683 0.7274173 3
11795 1.293890 -0.6732683 0.7274173 3
11796 1.293890 -0.6732683 0.7274173 2
11797 1.293890 -0.6732683 0.7274173 1
11798 1.293890 -0.6732683 0.7274173 3
11799 1.293890 -0.6732683 0.7274173 2
11800 1.293890 -0.6732683 0.7274173 2
11801 1.293890 -0.6732683 0.7274173 3
11802 1.293890 -0.6732683 0.7274173 3
11803 1.293890 -0.6732683 0.7274173 2
11804 1.293890 -0.6732683 0.7274173 2
11805 1.293890 -0.6732683 0.7274173 1
11806 1.293890 -0.6732683 0.7274173 2
11807 1.293890 -0.6732683 0.7274173 1
11808 1.293890 -0.6732683 0.7274173 3
11809 1.293890 -0.6732683 0.7274173 2
11810 1.293890 -0.6732683 0.7274173 3
11811 1.293890 -0.6732683 0.7274173 2
11812 1.293890 -0.6732683 0.7274173 1
11813 1.293890 -0.6732683 0.7274173 3
11814 1.293890 -0.6732683 0.7274173 3
11815 1.293890 -0.6732683 0.7274173 1
11816 1.293890 -0.6732683 0.7274173 1
11817 1.293890 -0.6732683 0.7274173 3
11818 1.293890 -0.6732683 0.7274173 1
11819 1.293890 -0.6732683 0.7274173 1
11820 1.293890 -0.6732683 0.7274173 1
11821 1.293890 -0.6732683 0.7274173 2
11822 1.293890 -0.6732683 0.7274173 1
11823 1.293890 -0.6732683 0.7274173 2
11824 1.293890 -0.6732683 0.7274173 1
11825 1.293890 -0.6732683 0.7274173 2
11826 1.293890 -0.6732683 0.7274173 2
11827 1.293890 -0.6732683 0.7274173 1
11828 1.293890 -0.6732683 0.7274173 1
11829 1.293890 -0.6732683 0.7274173 3
11830 1.293890 -0.6732683 0.7274173 3
11831 1.293890 -0.6732683 0.7274173 1
11832 1.293890 -0.6732683 0.7274173 3
11833 1.293890 -0.6732683 0.7274173 2
11834 1.293890 -0.6732683 0.7274173 2
11835 1.293890 -0.6732683 0.7274173 3
11836 1.293890 -0.6732683 0.7274173 2
11837 1.293890 -0.6732683 0.7274173 3
11838 1.293890 -0.6732683 0.7274173 3
11839 1.293890 -0.6732683 0.7274173 1
11840 1.293890 -0.6732683 0.7274173 2
11841 1.293890 -0.6732683 0.7274173 2
11842 1.293890 -0.6732683 0.7274173 2
11843 1.293890 -0.6732683 0.7274173 1
11844 1.293890 -0.6732683 0.7274173 1
11845 1.293890 -0.6732683 0.7274173 2
11846 1.293890 -0.6732683 0.7274173 1
11847 1.293890 -0.6732683 0.7274173 1
11848 1.293890 -0.6732683 0.7274173 2
11849 1.293890 -0.6732683 0.7274173 2
11850 1.293890 -0.6732683 0.7274173 2
11851 1.293890 -0.6732683 0.7274173 2
11852 1.293890 -0.6732683 0.7274173 2
11853 1.293890 -0.6732683 0.7274173 3
11854 1.293890 -0.6732683 0.7274173 1
11855 1.293890 -0.6732683 0.7274173 3
11856 1.293890 -0.6732683 0.7274173 3
11857 1.293890 -0.6732683 0.7274173 1
11858 1.293890 -0.6732683 0.7274173 1
11859 1.293890 -0.6732683 0.7274173 3
11860 1.293890 -0.6732683 0.7274173 2
11861 1.293890 -0.6732683 0.7274173 1
11862 1.293890 -0.6732683 0.7274173 2
11863 1.293890 -0.6732683 0.7274173 3
11864 1.293890 -0.6732683 0.7274173 3
11865 1.293890 -0.6732683 0.7274173 1
11866 1.293890 -0.6732683 0.7274173 3
11867 1.293890 -0.6732683 0.7274173 3
11868 1.293890 -0.6732683 0.7274173 3
11869 1.293890 -0.6732683 0.7274173 2
11870 1.293890 -0.6732683 0.7274173 2
11871 1.293890 -0.6732683 0.7274173 2
11872 1.293890 -0.6732683 0.7274173 3
11873 1.293890 -0.6732683 0.7274173 2
11874 1.293890 -0.6732683 0.7274173 3
11875 1.293890 -0.6732683 0.7274173 1
11876 1.293890 -0.6732683 0.7274173 3
11877 1.293890 -0.6732683 0.7274173 2
11878 1.293890 -0.6732683 0.7274173 2
11879 1.293890 -0.6732683 0.7274173 1
11880 1.293890 -0.6732683 0.7274173 3
11881 1.293890 -0.6732683 0.7274173 2
11882 1.293890 -0.6732683 0.7274173 1
11883 1.293890 -0.6732683 0.7274173 3
11884 1.293890 -0.6732683 0.7274173 1
11885 1.293890 -0.6732683 0.7274173 2
11886 1.293890 -0.6732683 0.7274173 1
11887 1.293890 -0.6732683 0.7274173 3
11888 1.293890 -0.6732683 0.7274173 3
11889 1.293890 -0.6732683 0.7274173 1
11890 1.293890 -0.6732683 0.7274173 2
11891 1.293890 -0.6732683 0.7274173 3
11892 1.293890 -0.6732683 0.7274173 2
11893 1.293890 -0.6732683 0.7274173 2
11894 1.293890 -0.6732683 0.7274173 1
11895 1.293890 -0.6732683 0.7274173 3
11896 1.293890 -0.6732683 0.7274173 2
11897 1.293890 -0.6732683 0.7274173 2
11898 1.293890 -0.6732683 0.7274173 2
11899 1.293890 -0.6732683 0.7274173 2
11900 1.293890 -0.6732683 0.7274173 3
11901 1.293890 -0.6732683 0.7274173 1
11902 1.293890 -0.6732683 0.7274173 1
11903 1.293890 -0.6732683 0.7274173 3
11904 1.293890 -0.6732683 0.7274173 2
11905 1.293890 -0.6732683 0.7274173 3
11906 1.293890 -0.6732683 0.7274173 1
11907 1.293890 -0.6732683 0.7274173 3
11908 1.293890 -0.6732683 0.7274173 3
11909 1.293890 -0.6732683 0.7274173 2
11910 1.293890 -0.6732683 0.7274173 3
11911 1.293890 -0.6732683 0.7274173 1
11912 1.293890 -0.6732683 0.7274173 3
11913 1.293890 -0.6732683 0.7274173 2
11914 1.293890 -0.6732683 0.7274173 2
11915 1.293890 -0.6732683 0.7274173 3
11916 1.293890 -0.6732683 0.7274173 3
11917 1.293890 -0.6732683 0.7274173 2
11918 1.293890 -0.6732683 0.7274173 3
11919 1.293890 -0.6732683 0.7274173 1
11920 1.293890 -0.6732683 0.7274173 3
11921 1.293890 -0.6732683 0.7274173 1
11922 1.293890 -0.6732683 0.7274173 3
11923 1.293890 -0.6732683 0.7274173 1
11924 1.293890 -0.6732683 0.7274173 3
11925 1.293890 -0.6732683 0.7274173 1
11926 1.293890 -0.6732683 0.7274173 3
11927 1.293890 -0.6732683 0.7274173 1
11928 1.293890 -0.6732683 0.7274173 1
11929 1.293890 -0.6732683 0.7274173 1
11930 1.293890 -0.6732683 0.7274173 2
11931 1.293890 -0.6732683 0.7274173 1
11932 1.293890 -0.6732683 0.7274173 3
11933 1.293890 -0.6732683 0.7274173 3
11934 1.293890 -0.6732683 0.7274173 1
11935 1.293890 -0.6732683 0.7274173 2
11936 1.293890 -0.6732683 0.7274173 3
11937 1.293890 -0.6732683 0.7274173 2
11938 1.293890 -0.6732683 0.7274173 1
11939 1.293890 -0.6732683 0.7274173 2
11940 1.293890 -0.6732683 0.7274173 3
11941 1.293890 -0.6732683 0.7274173 3
11942 1.293890 -0.6732683 0.7274173 3
11943 1.293890 -0.6732683 0.7274173 2
11944 1.293890 -0.6732683 0.7274173 2
11945 1.293890 -0.6732683 0.7274173 1
11946 1.293890 -0.6732683 0.7274173 3
11947 1.293890 -0.6732683 0.7274173 3
11948 1.288041 -0.6735101 0.7219592 2
11949 1.288041 -0.6735101 0.7219592 2
11950 1.288041 -0.6735101 0.7219592 3
11951 1.288041 -0.6735101 0.7219592 3
11952 1.288041 -0.6735101 0.7219592 3
11953 1.288041 -0.6735101 0.7219592 3
11954 1.288041 -0.6735101 0.7219592 3
11955 1.288041 -0.6735101 0.7219592 3
11956 1.288041 -0.6735101 0.7219592 1
11957 1.288041 -0.6735101 0.7219592 1
11958 1.288041 -0.6735101 0.7219592 2
11959 1.288041 -0.6735101 0.7219592 3
11960 1.288041 -0.6735101 0.7219592 1
11961 1.288041 -0.6735101 0.7219592 1
11962 1.288041 -0.6735101 0.7219592 2
11963 1.288041 -0.6735101 0.7219592 2
11964 1.288041 -0.6735101 0.7219592 2
11965 1.288041 -0.6735101 0.7219592 1
11966 1.288041 -0.6735101 0.7219592 2
11967 1.288041 -0.6735101 0.7219592 1
11968 1.288041 -0.6735101 0.7219592 3
11969 1.288041 -0.6735101 0.7219592 3
11970 1.288041 -0.6735101 0.7219592 3
11971 1.288041 -0.6735101 0.7219592 1
11972 1.288041 -0.6735101 0.7219592 1
11973 1.288041 -0.6735101 0.7219592 3
11974 1.288041 -0.6735101 0.7219592 2
11975 1.288041 -0.6735101 0.7219592 1
11976 1.288041 -0.6735101 0.7219592 1
11977 1.288041 -0.6735101 0.7219592 1
11978 1.288041 -0.6735101 0.7219592 1
11979 1.288041 -0.6735101 0.7219592 1
11980 1.288041 -0.6735101 0.7219592 3
11981 1.288041 -0.6735101 0.7219592 2
11982 1.288041 -0.6735101 0.7219592 2
11983 1.288041 -0.6735101 0.7219592 2
11984 1.288041 -0.6735101 0.7219592 1
11985 1.288041 -0.6735101 0.7219592 2
11986 1.288041 -0.6735101 0.7219592 2
11987 1.288041 -0.6735101 0.7219592 3
11988 1.288041 -0.6735101 0.7219592 3
11989 1.288041 -0.6735101 0.7219592 1
11990 1.288041 -0.6735101 0.7219592 1
11991 1.288041 -0.6735101 0.7219592 3
11992 1.288041 -0.6735101 0.7219592 1
11993 1.288041 -0.6735101 0.7219592 3
11994 1.288041 -0.6735101 0.7219592 1
11995 1.288041 -0.6735101 0.7219592 2
11996 1.288041 -0.6735101 0.7219592 3
11997 1.288041 -0.6735101 0.7219592 2
11998 1.288041 -0.6735101 0.7219592 3
11999 1.288041 -0.6735101 0.7219592 1
12000 1.288041 -0.6735101 0.7219592 2
12001 1.288041 -0.6735101 0.7219592 1
12002 1.288041 -0.6735101 0.7219592 2
12003 1.288041 -0.6735101 0.7219592 3
12004 1.288041 -0.6735101 0.7219592 1
12005 1.288041 -0.6735101 0.7219592 3
12006 1.288041 -0.6735101 0.7219592 2
12007 1.288041 -0.6735101 0.7219592 3
12008 1.288041 -0.6735101 0.7219592 1
12009 1.288041 -0.6735101 0.7219592 3
12010 1.288041 -0.6735101 0.7219592 2
12011 1.288041 -0.6735101 0.7219592 2
12012 1.288041 -0.6735101 0.7219592 2
12013 1.288041 -0.6735101 0.7219592 2
12014 1.288041 -0.6735101 0.7219592 2
12015 1.288041 -0.6735101 0.7219592 1
12016 1.288041 -0.6735101 0.7219592 1
12017 1.288041 -0.6735101 0.7219592 1
12018 1.288041 -0.6735101 0.7219592 1
12019 1.288041 -0.6735101 0.7219592 2
12020 1.288041 -0.6735101 0.7219592 3
12021 1.288041 -0.6735101 0.7219592 1
12022 1.288041 -0.6735101 0.7219592 3
12023 1.288041 -0.6735101 0.7219592 3
12024 1.288041 -0.6735101 0.7219592 3
12025 1.288041 -0.6735101 0.7219592 1
12026 1.288041 -0.6735101 0.7219592 2
12027 1.288041 -0.6735101 0.7219592 2
12028 1.288041 -0.6735101 0.7219592 3
12029 1.288041 -0.6735101 0.7219592 2
12030 1.288041 -0.6735101 0.7219592 2
12031 1.288041 -0.6735101 0.7219592 3
12032 1.288041 -0.6735101 0.7219592 1
12033 1.288041 -0.6735101 0.7219592 3
12034 1.288041 -0.6735101 0.7219592 3
12035 1.288041 -0.6735101 0.7219592 3
12036 1.288041 -0.6735101 0.7219592 3
12037 1.288041 -0.6735101 0.7219592 3
12038 1.288041 -0.6735101 0.7219592 2
12039 1.288041 -0.6735101 0.7219592 2
12040 1.288041 -0.6735101 0.7219592 2
12041 1.288041 -0.6735101 0.7219592 1
12042 1.288041 -0.6735101 0.7219592 3
12043 1.288041 -0.6735101 0.7219592 2
12044 1.288041 -0.6735101 0.7219592 1
12045 1.288041 -0.6735101 0.7219592 2
12046 1.288041 -0.6735101 0.7219592 2
12047 1.288041 -0.6735101 0.7219592 2
12048 1.288041 -0.6735101 0.7219592 1
12049 1.288041 -0.6735101 0.7219592 2
12050 1.288041 -0.6735101 0.7219592 2
12051 1.288041 -0.6735101 0.7219592 2
12052 1.288041 -0.6735101 0.7219592 2
12053 1.288041 -0.6735101 0.7219592 2
12054 1.288041 -0.6735101 0.7219592 2
12055 1.288041 -0.6735101 0.7219592 3
12056 1.288041 -0.6735101 0.7219592 1
12057 1.288041 -0.6735101 0.7219592 3
12058 1.288041 -0.6735101 0.7219592 2
12059 1.288041 -0.6735101 0.7219592 2
12060 1.288041 -0.6735101 0.7219592 2
12061 1.288041 -0.6735101 0.7219592 2
12062 1.288041 -0.6735101 0.7219592 2
12063 1.288041 -0.6735101 0.7219592 2
12064 1.288041 -0.6735101 0.7219592 2
12065 1.288041 -0.6735101 0.7219592 1
12066 1.288041 -0.6735101 0.7219592 1
12067 1.288041 -0.6735101 0.7219592 2
12068 1.288041 -0.6735101 0.7219592 3
12069 1.288041 -0.6735101 0.7219592 2
12070 1.288041 -0.6735101 0.7219592 2
12071 1.288041 -0.6735101 0.7219592 2
12072 1.288041 -0.6735101 0.7219592 3
12073 1.288041 -0.6735101 0.7219592 1
12074 1.288041 -0.6735101 0.7219592 2
12075 1.288041 -0.6735101 0.7219592 3
12076 1.288041 -0.6735101 0.7219592 3
12077 1.288041 -0.6735101 0.7219592 1
12078 1.288041 -0.6735101 0.7219592 3
12079 1.288041 -0.6735101 0.7219592 2
12080 1.288041 -0.6735101 0.7219592 1
12081 1.288041 -0.6735101 0.7219592 2
12082 1.288041 -0.6735101 0.7219592 2
12083 1.288041 -0.6735101 0.7219592 1
12084 1.288041 -0.6735101 0.7219592 3
12085 1.288041 -0.6735101 0.7219592 2
12086 1.288041 -0.6735101 0.7219592 3
12087 1.288041 -0.6735101 0.7219592 1
12088 1.288041 -0.6735101 0.7219592 3
12089 1.288041 -0.6735101 0.7219592 2
12090 1.288041 -0.6735101 0.7219592 2
12091 1.288041 -0.6735101 0.7219592 1
12092 1.288041 -0.6735101 0.7219592 1
12093 1.288041 -0.6735101 0.7219592 1
12094 1.288041 -0.6735101 0.7219592 1
12095 1.288041 -0.6735101 0.7219592 1
12096 1.288041 -0.6735101 0.7219592 1
12097 1.288041 -0.6735101 0.7219592 2
12098 1.288041 -0.6735101 0.7219592 1
12099 1.288041 -0.6735101 0.7219592 3
12100 1.288041 -0.6735101 0.7219592 1
12101 1.288041 -0.6735101 0.7219592 2
12102 1.288041 -0.6735101 0.7219592 2
12103 1.288041 -0.6735101 0.7219592 3
12104 1.288041 -0.6735101 0.7219592 1
12105 1.288041 -0.6735101 0.7219592 3
12106 1.288041 -0.6735101 0.7219592 2
12107 1.288041 -0.6735101 0.7219592 1
12108 1.288041 -0.6735101 0.7219592 3
12109 1.288041 -0.6735101 0.7219592 3
12110 1.288041 -0.6735101 0.7219592 2
12111 1.288041 -0.6735101 0.7219592 2
12112 1.288041 -0.6735101 0.7219592 1
12113 1.288041 -0.6735101 0.7219592 3
12114 1.288041 -0.6735101 0.7219592 1
12115 1.288041 -0.6735101 0.7219592 1
12116 1.288041 -0.6735101 0.7219592 1
12117 1.288041 -0.6735101 0.7219592 2
12118 1.288041 -0.6735101 0.7219592 2
12119 1.288041 -0.6735101 0.7219592 3
12120 1.288041 -0.6735101 0.7219592 2
12121 1.288041 -0.6735101 0.7219592 1
12122 1.288041 -0.6735101 0.7219592 3
12123 1.288041 -0.6735101 0.7219592 3
12124 1.288041 -0.6735101 0.7219592 2
12125 1.288041 -0.6735101 0.7219592 3
12126 1.288041 -0.6735101 0.7219592 2
12127 1.288041 -0.6735101 0.7219592 1
12128 1.288041 -0.6735101 0.7219592 2
12129 1.288041 -0.6735101 0.7219592 1
12130 1.288041 -0.6735101 0.7219592 1
12131 1.288041 -0.6735101 0.7219592 2
12132 1.288041 -0.6735101 0.7219592 3
12133 1.288041 -0.6735101 0.7219592 1
12134 1.288041 -0.6735101 0.7219592 3
12135 1.288041 -0.6735101 0.7219592 2
12136 1.288041 -0.6735101 0.7219592 1
12137 1.288041 -0.6735101 0.7219592 1
12138 1.288041 -0.6735101 0.7219592 2
12139 1.288041 -0.6735101 0.7219592 3
12140 1.288041 -0.6735101 0.7219592 2
12141 1.288041 -0.6735101 0.7219592 3
12142 1.288041 -0.6735101 0.7219592 3
12143 1.288041 -0.6735101 0.7219592 2
12144 1.288041 -0.6735101 0.7219592 3
12145 1.288041 -0.6735101 0.7219592 2
12146 1.288041 -0.6735101 0.7219592 1
12147 1.288041 -0.6735101 0.7219592 2
12148 1.288041 -0.6735101 0.7219592 3
12149 1.288041 -0.6735101 0.7219592 3
12150 1.288041 -0.6735101 0.7219592 3
12151 1.288041 -0.6735101 0.7219592 3
12152 1.288041 -0.6735101 0.7219592 2
12153 1.288041 -0.6735101 0.7219592 3
12154 1.288041 -0.6735101 0.7219592 2
12155 1.288041 -0.6735101 0.7219592 3
12156 1.288041 -0.6735101 0.7219592 3
12157 1.288041 -0.6735101 0.7219592 3
12158 1.288041 -0.6735101 0.7219592 3
12159 1.288041 -0.6735101 0.7219592 3
12160 1.288041 -0.6735101 0.7219592 3
12161 1.288041 -0.6735101 0.7219592 2
12162 1.288041 -0.6735101 0.7219592 3
12163 1.288041 -0.6735101 0.7219592 1
12164 1.288041 -0.6735101 0.7219592 2
12165 1.288041 -0.6735101 0.7219592 3
12166 1.288041 -0.6735101 0.7219592 3
12167 1.288041 -0.6735101 0.7219592 1
12168 1.288041 -0.6735101 0.7219592 1
12169 1.288041 -0.6735101 0.7219592 1
12170 1.288041 -0.6735101 0.7219592 1
12171 1.288041 -0.6735101 0.7219592 2
12172 1.288041 -0.6735101 0.7219592 3
12173 1.288041 -0.6735101 0.7219592 2
12174 1.288041 -0.6735101 0.7219592 3
12175 1.288041 -0.6735101 0.7219592 2
12176 1.288041 -0.6735101 0.7219592 1
12177 1.288041 -0.6735101 0.7219592 2
12178 1.288041 -0.6735101 0.7219592 3
12179 1.288041 -0.6735101 0.7219592 2
12180 1.288041 -0.6735101 0.7219592 1
12181 1.288041 -0.6735101 0.7219592 1
12182 1.288041 -0.6735101 0.7219592 3
12183 1.288041 -0.6735101 0.7219592 3
12184 1.288041 -0.6735101 0.7219592 1
12185 1.288041 -0.6735101 0.7219592 3
12186 1.288041 -0.6735101 0.7219592 1
12187 1.288041 -0.6735101 0.7219592 3
12188 1.288041 -0.6735101 0.7219592 1
12189 1.288041 -0.6735101 0.7219592 3
12190 1.288041 -0.6735101 0.7219592 2
12191 1.288041 -0.6735101 0.7219592 2
12192 1.288041 -0.6735101 0.7219592 1
12193 1.288041 -0.6735101 0.7219592 3
12194 1.288041 -0.6735101 0.7219592 2
12195 1.288041 -0.6735101 0.7219592 3
12196 1.288041 -0.6735101 0.7219592 1
12197 1.288041 -0.6735101 0.7219592 3
12198 1.288041 -0.6735101 0.7219592 3
12199 1.288041 -0.6735101 0.7219592 1
12200 1.288041 -0.6735101 0.7219592 3
12201 1.288041 -0.6735101 0.7219592 3
12202 1.288041 -0.6735101 0.7219592 2
12203 1.288041 -0.6735101 0.7219592 1
12204 1.288041 -0.6735101 0.7219592 3
12205 1.288041 -0.6735101 0.7219592 2
12206 1.288041 -0.6735101 0.7219592 2
12207 1.288041 -0.6735101 0.7219592 3
12208 1.288041 -0.6735101 0.7219592 3
12209 1.288041 -0.6735101 0.7219592 1
12210 1.288041 -0.6735101 0.7219592 2
12211 1.288041 -0.6735101 0.7219592 1
12212 1.288041 -0.6735101 0.7219592 1
12213 1.288041 -0.6735101 0.7219592 2
12214 1.288041 -0.6735101 0.7219592 1
12215 1.288041 -0.6735101 0.7219592 2
12216 1.288041 -0.6735101 0.7219592 1
12217 1.288041 -0.6735101 0.7219592 2
12218 1.288041 -0.6735101 0.7219592 1
12219 1.288041 -0.6735101 0.7219592 3
12220 1.288041 -0.6735101 0.7219592 2
12221 1.288041 -0.6735101 0.7219592 2
12222 1.288041 -0.6735101 0.7219592 3
12223 1.288041 -0.6735101 0.7219592 2
12224 1.288041 -0.6735101 0.7219592 2
12225 1.288041 -0.6735101 0.7219592 2
12226 1.288041 -0.6735101 0.7219592 2
12227 1.288041 -0.6735101 0.7219592 1
12228 1.288041 -0.6735101 0.7219592 3
12229 1.288041 -0.6735101 0.7219592 1
12230 1.288041 -0.6735101 0.7219592 3
12231 1.288041 -0.6735101 0.7219592 2
12232 1.288041 -0.6735101 0.7219592 2
12233 1.288041 -0.6735101 0.7219592 1
12234 1.288041 -0.6735101 0.7219592 3
12235 1.288041 -0.6735101 0.7219592 2
12236 1.288041 -0.6735101 0.7219592 1
12237 1.288041 -0.6735101 0.7219592 1
12238 1.288041 -0.6735101 0.7219592 3
12239 1.288041 -0.6735101 0.7219592 3
12240 1.288041 -0.6735101 0.7219592 2
12241 1.288041 -0.6735101 0.7219592 2
12242 1.288041 -0.6735101 0.7219592 3
12243 1.288041 -0.6735101 0.7219592 3
12244 1.288041 -0.6735101 0.7219592 2
12245 1.288041 -0.6735101 0.7219592 3
12246 1.288041 -0.6735101 0.7219592 2
12247 1.288041 -0.6735101 0.7219592 2
12248 1.288041 -0.6735101 0.7219592 1
12249 1.288041 -0.6735101 0.7219592 1
12250 1.288041 -0.6735101 0.7219592 2
12251 1.288041 -0.6735101 0.7219592 3
12252 1.288041 -0.6735101 0.7219592 2
12253 1.288041 -0.6735101 0.7219592 3
12254 1.288041 -0.6735101 0.7219592 3
12255 1.288041 -0.6735101 0.7219592 1
12256 1.288041 -0.6735101 0.7219592 1
12257 1.288041 -0.6735101 0.7219592 1
12258 1.288041 -0.6735101 0.7219592 2
12259 1.288041 -0.6735101 0.7219592 1
12260 1.288041 -0.6735101 0.7219592 2
12261 1.288041 -0.6735101 0.7219592 2
12262 1.288041 -0.6735101 0.7219592 1
12263 1.288041 -0.6735101 0.7219592 3
12264 1.288041 -0.6735101 0.7219592 3
12265 1.288041 -0.6735101 0.7219592 1
12266 1.288041 -0.6735101 0.7219592 1
12267 1.288041 -0.6735101 0.7219592 3
12268 1.288041 -0.6735101 0.7219592 1
12269 1.288041 -0.6735101 0.7219592 1
12270 1.288041 -0.6735101 0.7219592 2
12271 1.288041 -0.6735101 0.7219592 3
12272 1.288041 -0.6735101 0.7219592 2
12273 1.288041 -0.6735101 0.7219592 1
12274 1.288041 -0.6735101 0.7219592 2
12275 1.288041 -0.6735101 0.7219592 1
12276 1.288041 -0.6735101 0.7219592 3
12277 1.288041 -0.6735101 0.7219592 2
12278 1.288041 -0.6735101 0.7219592 2
12279 1.288041 -0.6735101 0.7219592 3
12280 1.288041 -0.6735101 0.7219592 3
12281 1.288041 -0.6735101 0.7219592 2
12282 1.288041 -0.6735101 0.7219592 2
12283 1.288041 -0.6735101 0.7219592 2
12284 1.288041 -0.6735101 0.7219592 1
12285 1.288041 -0.6735101 0.7219592 3
12286 1.288041 -0.6735101 0.7219592 2
12287 1.288041 -0.6735101 0.7219592 1
12288 1.288041 -0.6735101 0.7219592 3
12289 1.288041 -0.6735101 0.7219592 1
12290 1.288041 -0.6735101 0.7219592 2
12291 1.288041 -0.6735101 0.7219592 3
12292 1.288041 -0.6735101 0.7219592 1
12293 1.288041 -0.6735101 0.7219592 3
12294 1.288041 -0.6735101 0.7219592 3
12295 1.288041 -0.6735101 0.7219592 1
12296 1.288041 -0.6735101 0.7219592 2
12297 1.288041 -0.6735101 0.7219592 1
12298 1.288041 -0.6735101 0.7219592 3
12299 1.288041 -0.6735101 0.7219592 1
12300 1.288041 -0.6735101 0.7219592 3
12301 1.288041 -0.6735101 0.7219592 2
12302 1.288041 -0.6735101 0.7219592 3
12303 1.288041 -0.6735101 0.7219592 3
12304 1.288041 -0.6735101 0.7219592 2
12305 1.288041 -0.6735101 0.7219592 1
12306 1.288041 -0.6735101 0.7219592 1
12307 1.288041 -0.6735101 0.7219592 3
12308 1.288041 -0.6735101 0.7219592 2
12309 1.288041 -0.6735101 0.7219592 1
12310 1.288041 -0.6735101 0.7219592 3
12311 1.288041 -0.6735101 0.7219592 1
12312 1.288041 -0.6735101 0.7219592 2
12313 1.288041 -0.6735101 0.7219592 3
12314 1.288041 -0.6735101 0.7219592 3
12315 1.288041 -0.6735101 0.7219592 1
12316 1.288041 -0.6735101 0.7219592 1
12317 1.288041 -0.6735101 0.7219592 3
12318 1.288041 -0.6735101 0.7219592 1
12319 1.288041 -0.6735101 0.7219592 3
12320 1.288041 -0.6735101 0.7219592 2
12321 1.288041 -0.6735101 0.7219592 3
12322 1.288041 -0.6735101 0.7219592 2
12323 1.288041 -0.6735101 0.7219592 2
12324 1.288041 -0.6735101 0.7219592 3
12325 1.288041 -0.6735101 0.7219592 1
12326 1.288041 -0.6735101 0.7219592 1
12327 1.288041 -0.6735101 0.7219592 2
12328 1.288041 -0.6735101 0.7219592 1
12329 1.288041 -0.6735101 0.7219592 1
12330 1.288041 -0.6735101 0.7219592 1
12331 1.288041 -0.6735101 0.7219592 1
12332 1.288041 -0.6735101 0.7219592 3
12333 1.288041 -0.6735101 0.7219592 2
12334 1.288041 -0.6735101 0.7219592 3
12335 1.288041 -0.6735101 0.7219592 2
12336 1.288041 -0.6735101 0.7219592 2
12337 1.288041 -0.6735101 0.7219592 1
12338 1.288041 -0.6735101 0.7219592 2
12339 1.288041 -0.6735101 0.7219592 1
12340 1.288041 -0.6735101 0.7219592 2
12341 1.288041 -0.6735101 0.7219592 2
12342 1.288041 -0.6735101 0.7219592 2
12343 1.288041 -0.6735101 0.7219592 1
12344 1.288041 -0.6735101 0.7219592 3
12345 1.288041 -0.6735101 0.7219592 2
12346 1.288041 -0.6735101 0.7219592 2
12347 1.288041 -0.6735101 0.7219592 2
12348 1.288041 -0.6735101 0.7219592 3
12349 1.288041 -0.6735101 0.7219592 3
12350 1.288041 -0.6735101 0.7219592 1
12351 1.288041 -0.6735101 0.7219592 2
12352 1.288041 -0.6735101 0.7219592 2
12353 1.288041 -0.6735101 0.7219592 1
12354 1.288041 -0.6735101 0.7219592 2
12355 1.288041 -0.6735101 0.7219592 2
12356 1.288041 -0.6735101 0.7219592 3
12357 1.288041 -0.6735101 0.7219592 3
12358 1.288041 -0.6735101 0.7219592 3
12359 1.288041 -0.6735101 0.7219592 1
12360 1.288041 -0.6735101 0.7219592 3
12361 1.288041 -0.6735101 0.7219592 2
12362 1.288041 -0.6735101 0.7219592 3
12363 1.288041 -0.6735101 0.7219592 2
12364 1.288041 -0.6735101 0.7219592 1
12365 1.288041 -0.6735101 0.7219592 3
12366 1.288041 -0.6735101 0.7219592 1
12367 1.288041 -0.6735101 0.7219592 3
12368 1.288041 -0.6735101 0.7219592 1
12369 1.288041 -0.6735101 0.7219592 1
12370 1.288041 -0.6735101 0.7219592 3
12371 1.288041 -0.6735101 0.7219592 2
12372 1.288041 -0.6735101 0.7219592 1
12373 1.288041 -0.6735101 0.7219592 1
12374 1.288041 -0.6735101 0.7219592 3
12375 1.288041 -0.6735101 0.7219592 2
12376 1.288041 -0.6735101 0.7219592 2
12377 1.288041 -0.6735101 0.7219592 1
12378 1.288041 -0.6735101 0.7219592 1
12379 1.288041 -0.6735101 0.7219592 3
12380 1.288041 -0.6735101 0.7219592 3
12381 1.288041 -0.6735101 0.7219592 1
12382 1.288041 -0.6735101 0.7219592 2
12383 1.288041 -0.6735101 0.7219592 2
12384 1.288041 -0.6735101 0.7219592 3
12385 1.288041 -0.6735101 0.7219592 2
12386 1.288041 -0.6735101 0.7219592 2
12387 1.288041 -0.6735101 0.7219592 1
12388 1.288041 -0.6735101 0.7219592 1
12389 1.288041 -0.6735101 0.7219592 2
12390 1.288041 -0.6735101 0.7219592 1
12391 1.288041 -0.6735101 0.7219592 2
12392 1.288041 -0.6735101 0.7219592 2
12393 1.288041 -0.6735101 0.7219592 3
12394 1.288041 -0.6735101 0.7219592 3
12395 1.288041 -0.6735101 0.7219592 2
12396 1.288041 -0.6735101 0.7219592 3
12397 1.288041 -0.6735101 0.7219592 3
12398 1.288041 -0.6735101 0.7219592 3
12399 1.288041 -0.6735101 0.7219592 3
12400 1.288041 -0.6735101 0.7219592 3
12401 1.288041 -0.6735101 0.7219592 3
12402 1.288041 -0.6735101 0.7219592 3
12403 1.288041 -0.6735101 0.7219592 2
12404 1.288041 -0.6735101 0.7219592 2
12405 1.288041 -0.6735101 0.7219592 1
12406 1.288041 -0.6735101 0.7219592 2
12407 1.288041 -0.6735101 0.7219592 1
12408 1.288041 -0.6735101 0.7219592 2
12409 1.288041 -0.6735101 0.7219592 2
12410 1.288041 -0.6735101 0.7219592 1
12411 1.288041 -0.6735101 0.7219592 3
12412 1.288041 -0.6735101 0.7219592 3
12413 1.288041 -0.6735101 0.7219592 3
12414 1.288041 -0.6735101 0.7219592 1
12415 1.288041 -0.6735101 0.7219592 1
12416 1.288041 -0.6735101 0.7219592 3
12417 1.288041 -0.6735101 0.7219592 3
12418 1.288041 -0.6735101 0.7219592 3
12419 1.288041 -0.6735101 0.7219592 3
12420 1.288041 -0.6735101 0.7219592 2
12421 1.288041 -0.6735101 0.7219592 3
12422 1.288041 -0.6735101 0.7219592 3
12423 1.288041 -0.6735101 0.7219592 3
12424 1.288041 -0.6735101 0.7219592 3
12425 1.288041 -0.6735101 0.7219592 3
12426 1.288041 -0.6735101 0.7219592 2
12427 1.288041 -0.6735101 0.7219592 2
12428 1.288041 -0.6735101 0.7219592 1
12429 1.288041 -0.6735101 0.7219592 2
12430 1.288041 -0.6735101 0.7219592 1
12431 1.288041 -0.6735101 0.7219592 3
12432 1.288041 -0.6735101 0.7219592 3
12433 1.288041 -0.6735101 0.7219592 2
12434 1.288041 -0.6735101 0.7219592 2
12435 1.288041 -0.6735101 0.7219592 3
12436 1.288041 -0.6735101 0.7219592 1
12437 1.288041 -0.6735101 0.7219592 1
12438 1.288041 -0.6735101 0.7219592 3
12439 1.288041 -0.6735101 0.7219592 2
12440 1.288041 -0.6735101 0.7219592 1
12441 1.288041 -0.6735101 0.7219592 3
12442 1.288041 -0.6735101 0.7219592 1
12443 1.288041 -0.6735101 0.7219592 1
12444 1.288041 -0.6735101 0.7219592 1
12445 1.288041 -0.6735101 0.7219592 2
12446 1.288041 -0.6735101 0.7219592 1
12447 1.288041 -0.6735101 0.7219592 2
12448 1.288041 -0.6735101 0.7219592 3
12449 1.288041 -0.6735101 0.7219592 3
12450 1.288041 -0.6735101 0.7219592 1
12451 1.288041 -0.6735101 0.7219592 3
12452 1.288041 -0.6735101 0.7219592 1
12453 1.288041 -0.6735101 0.7219592 1
12454 1.288041 -0.6735101 0.7219592 2
12455 1.288041 -0.6735101 0.7219592 3
12456 1.288041 -0.6735101 0.7219592 2
12457 1.288041 -0.6735101 0.7219592 1
12458 1.288041 -0.6735101 0.7219592 2
12459 1.288041 -0.6735101 0.7219592 1
12460 1.288041 -0.6735101 0.7219592 2
12461 1.288041 -0.6735101 0.7219592 3
12462 1.288041 -0.6735101 0.7219592 1
12463 1.288041 -0.6735101 0.7219592 2
12464 1.288041 -0.6735101 0.7219592 3
12465 1.288041 -0.6735101 0.7219592 2
12466 1.288041 -0.6735101 0.7219592 1
12467 1.288041 -0.6735101 0.7219592 2
12468 1.288041 -0.6735101 0.7219592 2
12469 1.288041 -0.6735101 0.7219592 2
12470 1.288041 -0.6735101 0.7219592 1
12471 1.288041 -0.6735101 0.7219592 2
12472 1.288041 -0.6735101 0.7219592 2
12473 1.288041 -0.6735101 0.7219592 1
12474 1.288041 -0.6735101 0.7219592 1
12475 1.288041 -0.6735101 0.7219592 1
12476 1.288041 -0.6735101 0.7219592 1
12477 1.288041 -0.6735101 0.7219592 1
12478 1.288041 -0.6735101 0.7219592 1
12479 1.288041 -0.6735101 0.7219592 1
12480 1.288041 -0.6735101 0.7219592 2
12481 1.288041 -0.6735101 0.7219592 2
12482 1.288041 -0.6735101 0.7219592 2
12483 1.288041 -0.6735101 0.7219592 2
12484 1.288041 -0.6735101 0.7219592 3
12485 1.288041 -0.6735101 0.7219592 2
12486 1.288041 -0.6735101 0.7219592 3
12487 1.288041 -0.6735101 0.7219592 1
12488 1.288041 -0.6735101 0.7219592 3
12489 1.288041 -0.6735101 0.7219592 1
12490 1.288041 -0.6735101 0.7219592 1
12491 1.288041 -0.6735101 0.7219592 3
12492 1.288041 -0.6735101 0.7219592 2
12493 1.288041 -0.6735101 0.7219592 3
12494 1.288041 -0.6735101 0.7219592 3
12495 1.288041 -0.6735101 0.7219592 3
12496 1.288041 -0.6735101 0.7219592 2
12497 1.288041 -0.6735101 0.7219592 2
12498 1.288041 -0.6735101 0.7219592 2
12499 1.288041 -0.6735101 0.7219592 2
12500 1.288041 -0.6735101 0.7219592 2
12501 1.288041 -0.6735101 0.7219592 1
12502 1.288041 -0.6735101 0.7219592 2
12503 1.288041 -0.6735101 0.7219592 3
12504 1.288041 -0.6735101 0.7219592 3
12505 1.288041 -0.6735101 0.7219592 2
12506 1.288041 -0.6735101 0.7219592 2
12507 1.288041 -0.6735101 0.7219592 3
12508 1.288041 -0.6735101 0.7219592 2
12509 1.288041 -0.6735101 0.7219592 3
12510 1.288041 -0.6735101 0.7219592 2
12511 1.288041 -0.6735101 0.7219592 3
12512 1.288041 -0.6735101 0.7219592 3
12513 1.288041 -0.6735101 0.7219592 3
12514 1.288041 -0.6735101 0.7219592 3
12515 1.288041 -0.6735101 0.7219592 2
12516 1.288041 -0.6735101 0.7219592 3
12517 1.288041 -0.6735101 0.7219592 2
12518 1.288041 -0.6735101 0.7219592 1
12519 1.288041 -0.6735101 0.7219592 2
12520 1.288041 -0.6735101 0.7219592 3
12521 1.288041 -0.6735101 0.7219592 3
12522 1.288041 -0.6735101 0.7219592 1
12523 1.288041 -0.6735101 0.7219592 2
12524 1.288041 -0.6735101 0.7219592 1
12525 1.288041 -0.6735101 0.7219592 3
12526 1.288041 -0.6735101 0.7219592 1
12527 1.288041 -0.6735101 0.7219592 2
12528 1.288041 -0.6735101 0.7219592 3
12529 1.288041 -0.6735101 0.7219592 2
12530 1.288041 -0.6735101 0.7219592 1
12531 1.288041 -0.6735101 0.7219592 2
12532 1.288041 -0.6735101 0.7219592 2
12533 1.288041 -0.6735101 0.7219592 1
12534 1.288041 -0.6735101 0.7219592 1
12535 1.288041 -0.6735101 0.7219592 1
12536 1.288041 -0.6735101 0.7219592 3
12537 1.288041 -0.6735101 0.7219592 3
12538 1.288041 -0.6735101 0.7219592 1
12539 1.288041 -0.6735101 0.7219592 2
12540 1.288041 -0.6735101 0.7219592 1
12541 1.288041 -0.6735101 0.7219592 1
12542 1.288041 -0.6735101 0.7219592 3
12543 1.288041 -0.6735101 0.7219592 3
12544 1.288041 -0.6735101 0.7219592 2
12545 1.288041 -0.6735101 0.7219592 2
12546 1.288041 -0.6735101 0.7219592 1
12547 1.288041 -0.6735101 0.7219592 1
12548 1.288041 -0.6735101 0.7219592 3
12549 1.288041 -0.6735101 0.7219592 2
12550 1.288041 -0.6735101 0.7219592 1
12551 1.288041 -0.6735101 0.7219592 3
12552 1.288041 -0.6735101 0.7219592 1
12553 1.288041 -0.6735101 0.7219592 3
12554 1.288041 -0.6735101 0.7219592 1
12555 1.288041 -0.6735101 0.7219592 3
12556 1.288041 -0.6735101 0.7219592 1
12557 1.288041 -0.6735101 0.7219592 3
12558 1.288041 -0.6735101 0.7219592 1
12559 1.288041 -0.6735101 0.7219592 2
12560 1.288041 -0.6735101 0.7219592 2
12561 1.288041 -0.6735101 0.7219592 2
12562 1.288041 -0.6735101 0.7219592 1
12563 1.288041 -0.6735101 0.7219592 1
12564 1.288041 -0.6735101 0.7219592 3
12565 1.288041 -0.6735101 0.7219592 3
12566 1.288041 -0.6735101 0.7219592 2
12567 1.288041 -0.6735101 0.7219592 1
12568 1.288041 -0.6735101 0.7219592 3
12569 1.288041 -0.6735101 0.7219592 1
12570 1.288041 -0.6735101 0.7219592 1
12571 1.288041 -0.6735101 0.7219592 1
12572 1.288041 -0.6735101 0.7219592 1
12573 1.288041 -0.6735101 0.7219592 1
12574 1.288041 -0.6735101 0.7219592 1
12575 1.288041 -0.6735101 0.7219592 3
12576 1.288041 -0.6735101 0.7219592 3
12577 1.288041 -0.6735101 0.7219592 3
12578 1.288041 -0.6735101 0.7219592 1
12579 1.288041 -0.6735101 0.7219592 1
12580 1.288041 -0.6735101 0.7219592 1
12581 1.288041 -0.6735101 0.7219592 1
12582 1.288041 -0.6735101 0.7219592 2
12583 1.288041 -0.6735101 0.7219592 1
12584 1.288041 -0.6735101 0.7219592 1
12585 1.288041 -0.6735101 0.7219592 3
12586 1.288041 -0.6735101 0.7219592 2
12587 1.288041 -0.6735101 0.7219592 3
12588 1.288041 -0.6735101 0.7219592 1
12589 1.288041 -0.6735101 0.7219592 3
12590 1.288041 -0.6735101 0.7219592 1
12591 1.288041 -0.6735101 0.7219592 2
12592 1.288041 -0.6735101 0.7219592 3
12593 1.288041 -0.6735101 0.7219592 2
12594 1.288041 -0.6735101 0.7219592 1
12595 1.288041 -0.6735101 0.7219592 3
12596 1.288041 -0.6735101 0.7219592 2
12597 1.288041 -0.6735101 0.7219592 1
12598 1.288041 -0.6735101 0.7219592 2
12599 1.288041 -0.6735101 0.7219592 2
12600 1.288041 -0.6735101 0.7219592 2
12601 1.288041 -0.6735101 0.7219592 2
12602 1.288041 -0.6735101 0.7219592 1
12603 1.288041 -0.6735101 0.7219592 1
12604 1.288041 -0.6735101 0.7219592 3
12605 1.288041 -0.6735101 0.7219592 1
12606 1.288041 -0.6735101 0.7219592 2
12607 1.288041 -0.6735101 0.7219592 2
12608 1.288041 -0.6735101 0.7219592 2
12609 1.288041 -0.6735101 0.7219592 2
12610 1.288041 -0.6735101 0.7219592 3
12611 1.288041 -0.6735101 0.7219592 1
12612 1.288041 -0.6735101 0.7219592 1
12613 1.288041 -0.6735101 0.7219592 1
12614 1.288041 -0.6735101 0.7219592 2
12615 1.288041 -0.6735101 0.7219592 1
12616 1.288041 -0.6735101 0.7219592 1
12617 1.288041 -0.6735101 0.7219592 1
12618 1.288041 -0.6735101 0.7219592 1
12619 1.288041 -0.6735101 0.7219592 2
12620 1.288041 -0.6735101 0.7219592 1
12621 1.288041 -0.6735101 0.7219592 3
12622 1.288041 -0.6735101 0.7219592 2
12623 1.288041 -0.6735101 0.7219592 1
12624 1.288041 -0.6735101 0.7219592 3
12625 1.288041 -0.6735101 0.7219592 2
12626 1.288041 -0.6735101 0.7219592 2
12627 1.288041 -0.6735101 0.7219592 1
12628 1.288041 -0.6735101 0.7219592 1
12629 1.288041 -0.6735101 0.7219592 3
12630 1.288041 -0.6735101 0.7219592 3
12631 1.288041 -0.6735101 0.7219592 2
12632 1.288041 -0.6735101 0.7219592 3
12633 1.288041 -0.6735101 0.7219592 2
12634 1.288041 -0.6735101 0.7219592 2
12635 1.288041 -0.6735101 0.7219592 2
12636 1.288041 -0.6735101 0.7219592 3
12637 1.288041 -0.6735101 0.7219592 2
12638 1.288041 -0.6735101 0.7219592 2
12639 1.288041 -0.6735101 0.7219592 2
12640 1.288041 -0.6735101 0.7219592 3
12641 1.288041 -0.6735101 0.7219592 1
12642 1.288041 -0.6735101 0.7219592 1
12643 1.288041 -0.6735101 0.7219592 2
12644 1.288041 -0.6735101 0.7219592 2
12645 1.288041 -0.6735101 0.7219592 3
12646 1.288041 -0.6735101 0.7219592 3
12647 1.288041 -0.6735101 0.7219592 3
12648 1.288041 -0.6735101 0.7219592 2
12649 1.288041 -0.6735101 0.7219592 1
12650 1.288041 -0.6735101 0.7219592 2
12651 1.288041 -0.6735101 0.7219592 2
12652 1.288041 -0.6735101 0.7219592 3
12653 1.288041 -0.6735101 0.7219592 3
12654 1.288041 -0.6735101 0.7219592 2
12655 1.288041 -0.6735101 0.7219592 1
12656 1.288041 -0.6735101 0.7219592 1
12657 1.288041 -0.6735101 0.7219592 3
12658 1.288041 -0.6735101 0.7219592 1
12659 1.288041 -0.6735101 0.7219592 1
12660 1.288041 -0.6735101 0.7219592 2
12661 1.288041 -0.6735101 0.7219592 3
12662 1.288041 -0.6735101 0.7219592 3
12663 1.288041 -0.6735101 0.7219592 2
12664 1.288041 -0.6735101 0.7219592 1
12665 1.288041 -0.6735101 0.7219592 3
12666 1.288041 -0.6735101 0.7219592 1
12667 1.288041 -0.6735101 0.7219592 3
12668 1.288041 -0.6735101 0.7219592 2
12669 1.288041 -0.6735101 0.7219592 1
12670 1.288041 -0.6735101 0.7219592 3
12671 1.288041 -0.6735101 0.7219592 2
12672 1.288041 -0.6735101 0.7219592 3
12673 1.288041 -0.6735101 0.7219592 2
12674 1.288041 -0.6735101 0.7219592 3
12675 1.288041 -0.6735101 0.7219592 1
12676 1.288041 -0.6735101 0.7219592 1
12677 1.288041 -0.6735101 0.7219592 1
12678 1.288041 -0.6735101 0.7219592 2
12679 1.288041 -0.6735101 0.7219592 1
12680 1.288041 -0.6735101 0.7219592 2
12681 1.288041 -0.6735101 0.7219592 1
12682 1.288041 -0.6735101 0.7219592 2
12683 1.288041 -0.6735101 0.7219592 1
12684 1.288041 -0.6735101 0.7219592 1
12685 1.288041 -0.6735101 0.7219592 1
12686 1.288041 -0.6735101 0.7219592 3
12687 1.288041 -0.6735101 0.7219592 1
12688 1.288041 -0.6735101 0.7219592 3
12689 1.288041 -0.6735101 0.7219592 1
12690 1.288041 -0.6735101 0.7219592 2
12691 1.288041 -0.6735101 0.7219592 3
12692 1.288041 -0.6735101 0.7219592 3
12693 1.288041 -0.6735101 0.7219592 3
12694 1.288041 -0.6735101 0.7219592 2
12695 1.288041 -0.6735101 0.7219592 1
12696 1.288041 -0.6735101 0.7219592 1
12697 1.288041 -0.6735101 0.7219592 3
12698 1.288041 -0.6735101 0.7219592 2
12699 1.288041 -0.6735101 0.7219592 2
12700 1.288041 -0.6735101 0.7219592 2
12701 1.288041 -0.6735101 0.7219592 1
12702 1.288041 -0.6735101 0.7219592 1
12703 1.288041 -0.6735101 0.7219592 1
12704 1.288041 -0.6735101 0.7219592 1
12705 1.288041 -0.6735101 0.7219592 1
12706 1.288041 -0.6735101 0.7219592 3
12707 1.288041 -0.6735101 0.7219592 2
12708 1.288041 -0.6735101 0.7219592 3
12709 1.288041 -0.6735101 0.7219592 2
12710 1.288041 -0.6735101 0.7219592 1
12711 1.288041 -0.6735101 0.7219592 3
12712 1.288041 -0.6735101 0.7219592 1
12713 1.288041 -0.6735101 0.7219592 3
12714 1.288041 -0.6735101 0.7219592 1
12715 1.288041 -0.6735101 0.7219592 1
12716 1.288041 -0.6735101 0.7219592 1
12717 1.288041 -0.6735101 0.7219592 2
12718 1.288041 -0.6735101 0.7219592 1
12719 1.288041 -0.6735101 0.7219592 1
12720 1.288041 -0.6735101 0.7219592 1
12721 1.288041 -0.6735101 0.7219592 2
12722 1.288041 -0.6735101 0.7219592 2
12723 1.288041 -0.6735101 0.7219592 3
12724 1.288041 -0.6735101 0.7219592 2
12725 1.288041 -0.6735101 0.7219592 2
12726 1.288041 -0.6735101 0.7219592 1
12727 1.288041 -0.6735101 0.7219592 2
12728 1.288041 -0.6735101 0.7219592 2
12729 1.288041 -0.6735101 0.7219592 1
12730 1.288041 -0.6735101 0.7219592 1
12731 1.288041 -0.6735101 0.7219592 2
12732 1.288041 -0.6735101 0.7219592 2
12733 1.288041 -0.6735101 0.7219592 2
12734 1.288041 -0.6735101 0.7219592 3
12735 1.288041 -0.6735101 0.7219592 1
12736 1.288041 -0.6735101 0.7219592 1
12737 1.288041 -0.6735101 0.7219592 2
12738 1.288041 -0.6735101 0.7219592 2
12739 1.288041 -0.6735101 0.7219592 3
12740 1.288041 -0.6735101 0.7219592 1
12741 1.288041 -0.6735101 0.7219592 2
12742 1.288041 -0.6735101 0.7219592 1
12743 1.288041 -0.6735101 0.7219592 3
12744 1.288041 -0.6735101 0.7219592 2
12745 1.288041 -0.6735101 0.7219592 2
12746 1.288041 -0.6735101 0.7219592 1
12747 1.288041 -0.6735101 0.7219592 2
12748 1.288041 -0.6735101 0.7219592 3
12749 1.288041 -0.6735101 0.7219592 2
12750 1.288041 -0.6735101 0.7219592 2
12751 1.288041 -0.6735101 0.7219592 1
12752 1.288041 -0.6735101 0.7219592 2
12753 1.288041 -0.6735101 0.7219592 2
12754 1.288041 -0.6735101 0.7219592 2
12755 1.288041 -0.6735101 0.7219592 1
12756 1.288041 -0.6735101 0.7219592 2
12757 1.288041 -0.6735101 0.7219592 1
12758 1.288041 -0.6735101 0.7219592 2
12759 1.288041 -0.6735101 0.7219592 2
12760 1.288041 -0.6735101 0.7219592 1
12761 1.288041 -0.6735101 0.7219592 2
12762 1.288041 -0.6735101 0.7219592 1
12763 1.288041 -0.6735101 0.7219592 2
12764 1.288041 -0.6735101 0.7219592 1
12765 1.288041 -0.6735101 0.7219592 2
12766 1.288041 -0.6735101 0.7219592 1
12767 1.288041 -0.6735101 0.7219592 1
12768 1.288041 -0.6735101 0.7219592 3
12769 1.288041 -0.6735101 0.7219592 2
12770 1.288041 -0.6735101 0.7219592 2
12771 1.288041 -0.6735101 0.7219592 2
12772 1.288041 -0.6735101 0.7219592 2
12773 1.288041 -0.6735101 0.7219592 1
12774 1.288041 -0.6735101 0.7219592 3
12775 1.288041 -0.6735101 0.7219592 2
12776 1.288041 -0.6735101 0.7219592 1
12777 1.288041 -0.6735101 0.7219592 2
12778 1.288041 -0.6735101 0.7219592 3
12779 1.288041 -0.6735101 0.7219592 3
12780 1.288041 -0.6735101 0.7219592 1
12781 1.288041 -0.6735101 0.7219592 1
12782 1.288041 -0.6735101 0.7219592 2
12783 1.288041 -0.6735101 0.7219592 1
12784 1.288041 -0.6735101 0.7219592 3
12785 1.288041 -0.6735101 0.7219592 2
12786 1.288041 -0.6735101 0.7219592 2
12787 1.288041 -0.6735101 0.7219592 2
12788 1.288041 -0.6735101 0.7219592 3
12789 1.288041 -0.6735101 0.7219592 3
12790 1.288041 -0.6735101 0.7219592 1
12791 1.288041 -0.6735101 0.7219592 3
12792 1.288041 -0.6735101 0.7219592 1
12793 1.288041 -0.6735101 0.7219592 3
12794 1.288041 -0.6735101 0.7219592 2
12795 1.288041 -0.6735101 0.7219592 2
12796 1.288041 -0.6735101 0.7219592 1
12797 1.288041 -0.6735101 0.7219592 1
12798 1.288041 -0.6735101 0.7219592 2
12799 1.288041 -0.6735101 0.7219592 3
12800 1.288041 -0.6735101 0.7219592 3
12801 1.288041 -0.6735101 0.7219592 1
12802 1.288041 -0.6735101 0.7219592 3
12803 1.288041 -0.6735101 0.7219592 1
12804 1.288041 -0.6735101 0.7219592 2
12805 1.288041 -0.6735101 0.7219592 3
12806 1.288041 -0.6735101 0.7219592 1
12807 1.288041 -0.6735101 0.7219592 1
12808 1.288041 -0.6735101 0.7219592 1
12809 1.288041 -0.6735101 0.7219592 3
12810 1.288041 -0.6735101 0.7219592 3
12811 1.288041 -0.6735101 0.7219592 1
12812 1.288041 -0.6735101 0.7219592 2
12813 1.288041 -0.6735101 0.7219592 3
12814 1.288041 -0.6735101 0.7219592 2
12815 1.288041 -0.6735101 0.7219592 3
12816 1.288041 -0.6735101 0.7219592 1
12817 1.288041 -0.6735101 0.7219592 3
12818 1.288041 -0.6735101 0.7219592 1
12819 1.288041 -0.6735101 0.7219592 2
12820 1.288041 -0.6735101 0.7219592 2
12821 1.288041 -0.6735101 0.7219592 3
12822 1.288041 -0.6735101 0.7219592 1
12823 1.288041 -0.6735101 0.7219592 2
12824 1.288041 -0.6735101 0.7219592 3
12825 1.288041 -0.6735101 0.7219592 2
12826 1.288041 -0.6735101 0.7219592 3
12827 1.288041 -0.6735101 0.7219592 1
12828 1.288041 -0.6735101 0.7219592 3
12829 1.288041 -0.6735101 0.7219592 2
12830 1.288041 -0.6735101 0.7219592 2
12831 1.288041 -0.6735101 0.7219592 2
12832 1.288041 -0.6735101 0.7219592 3
12833 1.288041 -0.6735101 0.7219592 3
12834 1.288041 -0.6735101 0.7219592 3
12835 1.288041 -0.6735101 0.7219592 1
12836 1.288041 -0.6735101 0.7219592 3
12837 1.288041 -0.6735101 0.7219592 2
12838 1.288041 -0.6735101 0.7219592 2
12839 1.288041 -0.6735101 0.7219592 1
12840 1.288041 -0.6735101 0.7219592 2
12841 1.288041 -0.6735101 0.7219592 2
12842 1.288041 -0.6735101 0.7219592 2
12843 1.288041 -0.6735101 0.7219592 3
12844 1.288041 -0.6735101 0.7219592 1
12845 1.288041 -0.6735101 0.7219592 1
12846 1.288041 -0.6735101 0.7219592 3
12847 1.288041 -0.6735101 0.7219592 2
12848 1.288041 -0.6735101 0.7219592 2
12849 1.288041 -0.6735101 0.7219592 3
12850 1.288041 -0.6735101 0.7219592 1
12851 1.288041 -0.6735101 0.7219592 1
12852 1.288041 -0.6735101 0.7219592 1
12853 1.288041 -0.6735101 0.7219592 1
12854 1.288041 -0.6735101 0.7219592 3
12855 1.288041 -0.6735101 0.7219592 2
12856 1.288041 -0.6735101 0.7219592 2
12857 1.288041 -0.6735101 0.7219592 3
12858 1.288041 -0.6735101 0.7219592 3
12859 1.288041 -0.6735101 0.7219592 3
12860 1.288041 -0.6735101 0.7219592 3
12861 1.288041 -0.6735101 0.7219592 3
12862 1.288041 -0.6735101 0.7219592 3
12863 1.288041 -0.6735101 0.7219592 3
12864 1.288041 -0.6735101 0.7219592 2
12865 1.288041 -0.6735101 0.7219592 1
12866 1.288041 -0.6735101 0.7219592 2
12867 1.290580 -0.6573871 0.7254323 3
12868 1.290580 -0.6573871 0.7254323 2
12869 1.290580 -0.6573871 0.7254323 3
12870 1.290580 -0.6573871 0.7254323 2
12871 1.290580 -0.6573871 0.7254323 3
12872 1.290580 -0.6573871 0.7254323 2
12873 1.290580 -0.6573871 0.7254323 1
12874 1.290580 -0.6573871 0.7254323 2
12875 1.290580 -0.6573871 0.7254323 1
12876 1.290580 -0.6573871 0.7254323 2
12877 1.290580 -0.6573871 0.7254323 1
12878 1.290580 -0.6573871 0.7254323 1
12879 1.290580 -0.6573871 0.7254323 2
12880 1.290580 -0.6573871 0.7254323 2
12881 1.290580 -0.6573871 0.7254323 2
12882 1.290580 -0.6573871 0.7254323 3
12883 1.290580 -0.6573871 0.7254323 2
12884 1.290580 -0.6573871 0.7254323 1
12885 1.290580 -0.6573871 0.7254323 1
12886 1.290580 -0.6573871 0.7254323 2
12887 1.290580 -0.6573871 0.7254323 2
12888 1.290580 -0.6573871 0.7254323 1
12889 1.290580 -0.6573871 0.7254323 1
12890 1.290580 -0.6573871 0.7254323 2
12891 1.290580 -0.6573871 0.7254323 3
12892 1.290580 -0.6573871 0.7254323 2
12893 1.290580 -0.6573871 0.7254323 3
12894 1.290580 -0.6573871 0.7254323 2
12895 1.290580 -0.6573871 0.7254323 2
12896 1.290580 -0.6573871 0.7254323 2
12897 1.290580 -0.6573871 0.7254323 3
12898 1.290580 -0.6573871 0.7254323 1
12899 1.290580 -0.6573871 0.7254323 1
12900 1.290580 -0.6573871 0.7254323 3
12901 1.290580 -0.6573871 0.7254323 2
12902 1.290580 -0.6573871 0.7254323 2
12903 1.290580 -0.6573871 0.7254323 2
12904 1.290580 -0.6573871 0.7254323 1
12905 1.290580 -0.6573871 0.7254323 3
12906 1.290580 -0.6573871 0.7254323 1
12907 1.290580 -0.6573871 0.7254323 3
12908 1.290580 -0.6573871 0.7254323 1
12909 1.290580 -0.6573871 0.7254323 3
12910 1.290580 -0.6573871 0.7254323 3
12911 1.290580 -0.6573871 0.7254323 1
12912 1.290580 -0.6573871 0.7254323 3
12913 1.290580 -0.6573871 0.7254323 3
12914 1.290580 -0.6573871 0.7254323 1
12915 1.290580 -0.6573871 0.7254323 2
12916 1.290580 -0.6573871 0.7254323 2
12917 1.290580 -0.6573871 0.7254323 1
12918 1.290580 -0.6573871 0.7254323 2
12919 1.290580 -0.6573871 0.7254323 2
12920 1.290580 -0.6573871 0.7254323 3
12921 1.290580 -0.6573871 0.7254323 1
12922 1.290580 -0.6573871 0.7254323 2
12923 1.290580 -0.6573871 0.7254323 3
12924 1.290580 -0.6573871 0.7254323 3
12925 1.290580 -0.6573871 0.7254323 1
12926 1.290580 -0.6573871 0.7254323 3
12927 1.290580 -0.6573871 0.7254323 1
12928 1.290580 -0.6573871 0.7254323 3
12929 1.290580 -0.6573871 0.7254323 1
12930 1.290580 -0.6573871 0.7254323 1
12931 1.290580 -0.6573871 0.7254323 1
12932 1.290580 -0.6573871 0.7254323 2
12933 1.290580 -0.6573871 0.7254323 2
12934 1.290580 -0.6573871 0.7254323 3
12935 1.290580 -0.6573871 0.7254323 1
12936 1.290580 -0.6573871 0.7254323 2
12937 1.290580 -0.6573871 0.7254323 2
12938 1.290580 -0.6573871 0.7254323 1
12939 1.290580 -0.6573871 0.7254323 3
12940 1.290580 -0.6573871 0.7254323 3
12941 1.290580 -0.6573871 0.7254323 1
12942 1.290580 -0.6573871 0.7254323 1
12943 1.290580 -0.6573871 0.7254323 1
12944 1.290580 -0.6573871 0.7254323 3
12945 1.290580 -0.6573871 0.7254323 3
12946 1.290580 -0.6573871 0.7254323 2
12947 1.290580 -0.6573871 0.7254323 1
12948 1.290580 -0.6573871 0.7254323 3
12949 1.290580 -0.6573871 0.7254323 3
12950 1.290580 -0.6573871 0.7254323 2
12951 1.290580 -0.6573871 0.7254323 3
12952 1.290580 -0.6573871 0.7254323 2
12953 1.290580 -0.6573871 0.7254323 2
12954 1.290580 -0.6573871 0.7254323 1
12955 1.290580 -0.6573871 0.7254323 1
12956 1.290580 -0.6573871 0.7254323 2
12957 1.290580 -0.6573871 0.7254323 1
12958 1.290580 -0.6573871 0.7254323 3
12959 1.290580 -0.6573871 0.7254323 3
12960 1.290580 -0.6573871 0.7254323 1
12961 1.290580 -0.6573871 0.7254323 1
12962 1.290580 -0.6573871 0.7254323 2
12963 1.290580 -0.6573871 0.7254323 1
12964 1.290580 -0.6573871 0.7254323 2
12965 1.290580 -0.6573871 0.7254323 2
12966 1.290580 -0.6573871 0.7254323 2
12967 1.290580 -0.6573871 0.7254323 2
12968 1.290580 -0.6573871 0.7254323 2
12969 1.290580 -0.6573871 0.7254323 1
12970 1.290580 -0.6573871 0.7254323 3
12971 1.290580 -0.6573871 0.7254323 2
12972 1.290580 -0.6573871 0.7254323 2
12973 1.290580 -0.6573871 0.7254323 1
12974 1.290580 -0.6573871 0.7254323 2
12975 1.290580 -0.6573871 0.7254323 1
12976 1.290580 -0.6573871 0.7254323 2
12977 1.290580 -0.6573871 0.7254323 2
12978 1.290580 -0.6573871 0.7254323 3
12979 1.290580 -0.6573871 0.7254323 1
12980 1.290580 -0.6573871 0.7254323 2
12981 1.290580 -0.6573871 0.7254323 1
12982 1.290580 -0.6573871 0.7254323 3
12983 1.290580 -0.6573871 0.7254323 3
12984 1.290580 -0.6573871 0.7254323 2
12985 1.290580 -0.6573871 0.7254323 1
12986 1.290580 -0.6573871 0.7254323 2
12987 1.290580 -0.6573871 0.7254323 1
12988 1.290580 -0.6573871 0.7254323 3
12989 1.290580 -0.6573871 0.7254323 1
12990 1.290580 -0.6573871 0.7254323 3
12991 1.290580 -0.6573871 0.7254323 2
12992 1.290580 -0.6573871 0.7254323 2
12993 1.290580 -0.6573871 0.7254323 3
12994 1.290580 -0.6573871 0.7254323 1
12995 1.290580 -0.6573871 0.7254323 2
12996 1.290580 -0.6573871 0.7254323 2
12997 1.290580 -0.6573871 0.7254323 2
12998 1.290580 -0.6573871 0.7254323 2
12999 1.290580 -0.6573871 0.7254323 1
13000 1.290580 -0.6573871 0.7254323 3
13001 1.290580 -0.6573871 0.7254323 1
13002 1.290580 -0.6573871 0.7254323 1
13003 1.290580 -0.6573871 0.7254323 1
13004 1.290580 -0.6573871 0.7254323 3
13005 1.290580 -0.6573871 0.7254323 1
13006 1.290580 -0.6573871 0.7254323 1
13007 1.290580 -0.6573871 0.7254323 2
13008 1.290580 -0.6573871 0.7254323 3
13009 1.290580 -0.6573871 0.7254323 3
13010 1.290580 -0.6573871 0.7254323 3
13011 1.290580 -0.6573871 0.7254323 1
13012 1.290580 -0.6573871 0.7254323 1
13013 1.290580 -0.6573871 0.7254323 3
13014 1.290580 -0.6573871 0.7254323 2
13015 1.290580 -0.6573871 0.7254323 2
13016 1.290580 -0.6573871 0.7254323 3
13017 1.290580 -0.6573871 0.7254323 2
13018 1.290580 -0.6573871 0.7254323 3
13019 1.290580 -0.6573871 0.7254323 1
13020 1.290580 -0.6573871 0.7254323 2
13021 1.290580 -0.6573871 0.7254323 1
13022 1.290580 -0.6573871 0.7254323 2
13023 1.290580 -0.6573871 0.7254323 1
13024 1.290580 -0.6573871 0.7254323 1
13025 1.290580 -0.6573871 0.7254323 3
13026 1.290580 -0.6573871 0.7254323 3
13027 1.290580 -0.6573871 0.7254323 1
13028 1.290580 -0.6573871 0.7254323 2
13029 1.290580 -0.6573871 0.7254323 3
13030 1.290580 -0.6573871 0.7254323 3
13031 1.290580 -0.6573871 0.7254323 3
13032 1.290580 -0.6573871 0.7254323 2
13033 1.290580 -0.6573871 0.7254323 2
13034 1.290580 -0.6573871 0.7254323 1
13035 1.290580 -0.6573871 0.7254323 1
13036 1.290580 -0.6573871 0.7254323 3
13037 1.290580 -0.6573871 0.7254323 3
13038 1.290580 -0.6573871 0.7254323 3
13039 1.290580 -0.6573871 0.7254323 2
13040 1.290580 -0.6573871 0.7254323 2
13041 1.290580 -0.6573871 0.7254323 1
13042 1.290580 -0.6573871 0.7254323 2
13043 1.290580 -0.6573871 0.7254323 2
13044 1.290580 -0.6573871 0.7254323 3
13045 1.290580 -0.6573871 0.7254323 3
13046 1.290580 -0.6573871 0.7254323 2
13047 1.290580 -0.6573871 0.7254323 2
13048 1.290580 -0.6573871 0.7254323 2
13049 1.290580 -0.6573871 0.7254323 1
13050 1.290580 -0.6573871 0.7254323 3
13051 1.290580 -0.6573871 0.7254323 2
13052 1.290580 -0.6573871 0.7254323 1
13053 1.290580 -0.6573871 0.7254323 3
13054 1.290580 -0.6573871 0.7254323 2
13055 1.290580 -0.6573871 0.7254323 2
13056 1.290580 -0.6573871 0.7254323 3
13057 1.290580 -0.6573871 0.7254323 3
13058 1.290580 -0.6573871 0.7254323 1
13059 1.290580 -0.6573871 0.7254323 3
13060 1.290580 -0.6573871 0.7254323 3
13061 1.290580 -0.6573871 0.7254323 1
13062 1.290580 -0.6573871 0.7254323 1
13063 1.290580 -0.6573871 0.7254323 2
13064 1.290580 -0.6573871 0.7254323 2
13065 1.290580 -0.6573871 0.7254323 3
13066 1.290580 -0.6573871 0.7254323 3
13067 1.290580 -0.6573871 0.7254323 3
13068 1.290580 -0.6573871 0.7254323 2
13069 1.290580 -0.6573871 0.7254323 2
13070 1.290580 -0.6573871 0.7254323 1
13071 1.290580 -0.6573871 0.7254323 1
13072 1.290580 -0.6573871 0.7254323 3
13073 1.290580 -0.6573871 0.7254323 1
13074 1.290580 -0.6573871 0.7254323 2
13075 1.290580 -0.6573871 0.7254323 2
13076 1.290580 -0.6573871 0.7254323 2
13077 1.290580 -0.6573871 0.7254323 2
13078 1.290580 -0.6573871 0.7254323 2
13079 1.290580 -0.6573871 0.7254323 2
13080 1.290580 -0.6573871 0.7254323 1
13081 1.290580 -0.6573871 0.7254323 2
13082 1.290580 -0.6573871 0.7254323 2
13083 1.290580 -0.6573871 0.7254323 1
13084 1.290580 -0.6573871 0.7254323 1
13085 1.290580 -0.6573871 0.7254323 2
13086 1.290580 -0.6573871 0.7254323 3
13087 1.290580 -0.6573871 0.7254323 3
13088 1.290580 -0.6573871 0.7254323 1
13089 1.290580 -0.6573871 0.7254323 1
13090 1.290580 -0.6573871 0.7254323 2
13091 1.290580 -0.6573871 0.7254323 3
13092 1.290580 -0.6573871 0.7254323 2
13093 1.290580 -0.6573871 0.7254323 1
13094 1.290580 -0.6573871 0.7254323 2
13095 1.290580 -0.6573871 0.7254323 3
13096 1.290580 -0.6573871 0.7254323 2
13097 1.290580 -0.6573871 0.7254323 1
13098 1.290580 -0.6573871 0.7254323 2
13099 1.290580 -0.6573871 0.7254323 2
13100 1.290580 -0.6573871 0.7254323 3
13101 1.290580 -0.6573871 0.7254323 1
13102 1.290580 -0.6573871 0.7254323 2
13103 1.290580 -0.6573871 0.7254323 3
13104 1.290580 -0.6573871 0.7254323 3
13105 1.290580 -0.6573871 0.7254323 1
13106 1.290580 -0.6573871 0.7254323 1
13107 1.290580 -0.6573871 0.7254323 1
13108 1.290580 -0.6573871 0.7254323 1
13109 1.290580 -0.6573871 0.7254323 3
13110 1.290580 -0.6573871 0.7254323 3
13111 1.290580 -0.6573871 0.7254323 2
13112 1.290580 -0.6573871 0.7254323 2
13113 1.290580 -0.6573871 0.7254323 3
13114 1.290580 -0.6573871 0.7254323 2
13115 1.290580 -0.6573871 0.7254323 3
13116 1.290580 -0.6573871 0.7254323 2
13117 1.290580 -0.6573871 0.7254323 3
13118 1.290580 -0.6573871 0.7254323 1
13119 1.290580 -0.6573871 0.7254323 3
13120 1.290580 -0.6573871 0.7254323 2
13121 1.290580 -0.6573871 0.7254323 1
13122 1.290580 -0.6573871 0.7254323 3
13123 1.290580 -0.6573871 0.7254323 2
13124 1.290580 -0.6573871 0.7254323 2
13125 1.290580 -0.6573871 0.7254323 3
13126 1.290580 -0.6573871 0.7254323 1
13127 1.290580 -0.6573871 0.7254323 2
13128 1.290580 -0.6573871 0.7254323 1
13129 1.290580 -0.6573871 0.7254323 3
13130 1.290580 -0.6573871 0.7254323 3
13131 1.290580 -0.6573871 0.7254323 1
13132 1.290580 -0.6573871 0.7254323 2
13133 1.290580 -0.6573871 0.7254323 2
13134 1.290580 -0.6573871 0.7254323 2
13135 1.290580 -0.6573871 0.7254323 1
13136 1.290580 -0.6573871 0.7254323 2
13137 1.290580 -0.6573871 0.7254323 2
13138 1.290580 -0.6573871 0.7254323 3
13139 1.290580 -0.6573871 0.7254323 1
13140 1.290580 -0.6573871 0.7254323 2
13141 1.290580 -0.6573871 0.7254323 3
13142 1.290580 -0.6573871 0.7254323 3
13143 1.290580 -0.6573871 0.7254323 1
13144 1.290580 -0.6573871 0.7254323 3
13145 1.290580 -0.6573871 0.7254323 3
13146 1.290580 -0.6573871 0.7254323 3
13147 1.290580 -0.6573871 0.7254323 2
13148 1.290580 -0.6573871 0.7254323 2
13149 1.290580 -0.6573871 0.7254323 1
13150 1.290580 -0.6573871 0.7254323 1
13151 1.290580 -0.6573871 0.7254323 2
13152 1.290580 -0.6573871 0.7254323 3
13153 1.290580 -0.6573871 0.7254323 3
13154 1.290580 -0.6573871 0.7254323 1
13155 1.290580 -0.6573871 0.7254323 1
13156 1.290580 -0.6573871 0.7254323 1
13157 1.290580 -0.6573871 0.7254323 2
13158 1.290580 -0.6573871 0.7254323 1
13159 1.290580 -0.6573871 0.7254323 1
13160 1.290580 -0.6573871 0.7254323 1
13161 1.290580 -0.6573871 0.7254323 1
13162 1.290580 -0.6573871 0.7254323 3
13163 1.290580 -0.6573871 0.7254323 3
13164 1.290580 -0.6573871 0.7254323 3
13165 1.290580 -0.6573871 0.7254323 1
13166 1.290580 -0.6573871 0.7254323 2
13167 1.290580 -0.6573871 0.7254323 2
13168 1.290580 -0.6573871 0.7254323 3
13169 1.290580 -0.6573871 0.7254323 3
13170 1.290580 -0.6573871 0.7254323 3
13171 1.290580 -0.6573871 0.7254323 3
13172 1.290580 -0.6573871 0.7254323 1
13173 1.290580 -0.6573871 0.7254323 2
13174 1.290580 -0.6573871 0.7254323 1
13175 1.290580 -0.6573871 0.7254323 1
13176 1.290580 -0.6573871 0.7254323 2
13177 1.290580 -0.6573871 0.7254323 2
13178 1.290580 -0.6573871 0.7254323 3
13179 1.290580 -0.6573871 0.7254323 3
13180 1.290580 -0.6573871 0.7254323 3
13181 1.290580 -0.6573871 0.7254323 3
13182 1.290580 -0.6573871 0.7254323 1
13183 1.290580 -0.6573871 0.7254323 2
13184 1.290580 -0.6573871 0.7254323 3
13185 1.290580 -0.6573871 0.7254323 2
13186 1.290580 -0.6573871 0.7254323 2
13187 1.290580 -0.6573871 0.7254323 3
13188 1.290580 -0.6573871 0.7254323 1
13189 1.290580 -0.6573871 0.7254323 3
13190 1.290580 -0.6573871 0.7254323 1
13191 1.290580 -0.6573871 0.7254323 2
13192 1.290580 -0.6573871 0.7254323 3
13193 1.290580 -0.6573871 0.7254323 2
13194 1.290580 -0.6573871 0.7254323 2
13195 1.290580 -0.6573871 0.7254323 3
13196 1.290580 -0.6573871 0.7254323 3
13197 1.290580 -0.6573871 0.7254323 2
13198 1.290580 -0.6573871 0.7254323 3
13199 1.290580 -0.6573871 0.7254323 1
13200 1.290580 -0.6573871 0.7254323 3
13201 1.290580 -0.6573871 0.7254323 2
13202 1.290580 -0.6573871 0.7254323 1
13203 1.290580 -0.6573871 0.7254323 1
13204 1.290580 -0.6573871 0.7254323 3
13205 1.290580 -0.6573871 0.7254323 2
13206 1.290580 -0.6573871 0.7254323 2
13207 1.290580 -0.6573871 0.7254323 1
13208 1.290580 -0.6573871 0.7254323 3
13209 1.290580 -0.6573871 0.7254323 3
13210 1.290580 -0.6573871 0.7254323 1
13211 1.290580 -0.6573871 0.7254323 2
13212 1.290580 -0.6573871 0.7254323 3
13213 1.290580 -0.6573871 0.7254323 1
13214 1.290580 -0.6573871 0.7254323 2
13215 1.290580 -0.6573871 0.7254323 3
13216 1.290580 -0.6573871 0.7254323 1
13217 1.290580 -0.6573871 0.7254323 3
13218 1.290580 -0.6573871 0.7254323 2
13219 1.290580 -0.6573871 0.7254323 1
13220 1.290580 -0.6573871 0.7254323 3
13221 1.290580 -0.6573871 0.7254323 3
13222 1.290580 -0.6573871 0.7254323 3
13223 1.290580 -0.6573871 0.7254323 3
13224 1.290580 -0.6573871 0.7254323 1
13225 1.290580 -0.6573871 0.7254323 2
13226 1.290580 -0.6573871 0.7254323 1
13227 1.290580 -0.6573871 0.7254323 2
13228 1.290580 -0.6573871 0.7254323 1
13229 1.290580 -0.6573871 0.7254323 1
13230 1.290580 -0.6573871 0.7254323 3
13231 1.290580 -0.6573871 0.7254323 1
13232 1.290580 -0.6573871 0.7254323 2
13233 1.290580 -0.6573871 0.7254323 3
13234 1.290580 -0.6573871 0.7254323 1
13235 1.290580 -0.6573871 0.7254323 1
13236 1.290580 -0.6573871 0.7254323 2
13237 1.290580 -0.6573871 0.7254323 3
13238 1.290580 -0.6573871 0.7254323 1
13239 1.290580 -0.6573871 0.7254323 1
13240 1.290580 -0.6573871 0.7254323 3
13241 1.290580 -0.6573871 0.7254323 3
13242 1.290580 -0.6573871 0.7254323 1
13243 1.290580 -0.6573871 0.7254323 1
13244 1.290580 -0.6573871 0.7254323 1
13245 1.290580 -0.6573871 0.7254323 3
13246 1.290580 -0.6573871 0.7254323 1
13247 1.290580 -0.6573871 0.7254323 1
13248 1.290580 -0.6573871 0.7254323 1
13249 1.290580 -0.6573871 0.7254323 2
13250 1.290580 -0.6573871 0.7254323 2
13251 1.290580 -0.6573871 0.7254323 3
13252 1.290580 -0.6573871 0.7254323 3
13253 1.290580 -0.6573871 0.7254323 2
13254 1.290580 -0.6573871 0.7254323 1
13255 1.290580 -0.6573871 0.7254323 2
13256 1.290580 -0.6573871 0.7254323 3
13257 1.290580 -0.6573871 0.7254323 2
13258 1.290580 -0.6573871 0.7254323 1
13259 1.290580 -0.6573871 0.7254323 1
13260 1.290580 -0.6573871 0.7254323 2
13261 1.290580 -0.6573871 0.7254323 1
13262 1.290580 -0.6573871 0.7254323 1
13263 1.290580 -0.6573871 0.7254323 2
13264 1.290580 -0.6573871 0.7254323 1
13265 1.290580 -0.6573871 0.7254323 1
13266 1.290580 -0.6573871 0.7254323 3
13267 1.290580 -0.6573871 0.7254323 3
13268 1.290580 -0.6573871 0.7254323 3
13269 1.290580 -0.6573871 0.7254323 1
13270 1.290580 -0.6573871 0.7254323 1
13271 1.290580 -0.6573871 0.7254323 3
13272 1.290580 -0.6573871 0.7254323 1
13273 1.290580 -0.6573871 0.7254323 2
13274 1.290580 -0.6573871 0.7254323 2
13275 1.290580 -0.6573871 0.7254323 2
13276 1.290580 -0.6573871 0.7254323 3
13277 1.290580 -0.6573871 0.7254323 3
13278 1.290580 -0.6573871 0.7254323 2
13279 1.290580 -0.6573871 0.7254323 3
13280 1.290580 -0.6573871 0.7254323 1
13281 1.290580 -0.6573871 0.7254323 2
13282 1.290580 -0.6573871 0.7254323 1
13283 1.290580 -0.6573871 0.7254323 2
13284 1.290580 -0.6573871 0.7254323 3
13285 1.290580 -0.6573871 0.7254323 3
13286 1.290580 -0.6573871 0.7254323 2
13287 1.290580 -0.6573871 0.7254323 3
13288 1.290580 -0.6573871 0.7254323 2
13289 1.290580 -0.6573871 0.7254323 1
13290 1.290580 -0.6573871 0.7254323 1
13291 1.290580 -0.6573871 0.7254323 2
13292 1.290580 -0.6573871 0.7254323 1
13293 1.290580 -0.6573871 0.7254323 2
13294 1.290580 -0.6573871 0.7254323 2
13295 1.290580 -0.6573871 0.7254323 1
13296 1.290580 -0.6573871 0.7254323 3
13297 1.290580 -0.6573871 0.7254323 2
13298 1.290580 -0.6573871 0.7254323 2
13299 1.290580 -0.6573871 0.7254323 3
13300 1.290580 -0.6573871 0.7254323 1
13301 1.290580 -0.6573871 0.7254323 1
13302 1.290580 -0.6573871 0.7254323 3
13303 1.290580 -0.6573871 0.7254323 3
13304 1.290580 -0.6573871 0.7254323 1
13305 1.290580 -0.6573871 0.7254323 1
13306 1.290580 -0.6573871 0.7254323 3
13307 1.290580 -0.6573871 0.7254323 3
13308 1.290580 -0.6573871 0.7254323 1
13309 1.290580 -0.6573871 0.7254323 1
13310 1.290580 -0.6573871 0.7254323 1
13311 1.290580 -0.6573871 0.7254323 1
13312 1.290580 -0.6573871 0.7254323 1
13313 1.290580 -0.6573871 0.7254323 1
13314 1.290580 -0.6573871 0.7254323 1
13315 1.290580 -0.6573871 0.7254323 3
13316 1.290580 -0.6573871 0.7254323 1
13317 1.290580 -0.6573871 0.7254323 1
13318 1.290580 -0.6573871 0.7254323 2
13319 1.290580 -0.6573871 0.7254323 1
13320 1.290580 -0.6573871 0.7254323 1
13321 1.290580 -0.6573871 0.7254323 2
13322 1.290580 -0.6573871 0.7254323 3
13323 1.290580 -0.6573871 0.7254323 2
13324 1.290580 -0.6573871 0.7254323 3
13325 1.290580 -0.6573871 0.7254323 1
13326 1.290580 -0.6573871 0.7254323 2
13327 1.290580 -0.6573871 0.7254323 3
13328 1.290580 -0.6573871 0.7254323 1
13329 1.290580 -0.6573871 0.7254323 3
13330 1.290580 -0.6573871 0.7254323 1
13331 1.290580 -0.6573871 0.7254323 2
13332 1.290580 -0.6573871 0.7254323 1
13333 1.290580 -0.6573871 0.7254323 2
13334 1.290580 -0.6573871 0.7254323 3
13335 1.290580 -0.6573871 0.7254323 2
13336 1.290580 -0.6573871 0.7254323 1
13337 1.290580 -0.6573871 0.7254323 3
13338 1.290580 -0.6573871 0.7254323 1
13339 1.290580 -0.6573871 0.7254323 1
13340 1.290580 -0.6573871 0.7254323 2
13341 1.290580 -0.6573871 0.7254323 1
13342 1.290580 -0.6573871 0.7254323 2
13343 1.290580 -0.6573871 0.7254323 3
13344 1.290580 -0.6573871 0.7254323 1
13345 1.290580 -0.6573871 0.7254323 1
13346 1.290580 -0.6573871 0.7254323 1
13347 1.290580 -0.6573871 0.7254323 1
13348 1.290580 -0.6573871 0.7254323 2
13349 1.290580 -0.6573871 0.7254323 1
13350 1.290580 -0.6573871 0.7254323 2
13351 1.290580 -0.6573871 0.7254323 2
13352 1.290580 -0.6573871 0.7254323 2
13353 1.290580 -0.6573871 0.7254323 3
13354 1.290580 -0.6573871 0.7254323 2
13355 1.290580 -0.6573871 0.7254323 2
13356 1.290580 -0.6573871 0.7254323 2
13357 1.290580 -0.6573871 0.7254323 3
13358 1.290580 -0.6573871 0.7254323 3
13359 1.290580 -0.6573871 0.7254323 1
13360 1.290580 -0.6573871 0.7254323 2
13361 1.290580 -0.6573871 0.7254323 2
13362 1.290580 -0.6573871 0.7254323 2
13363 1.290580 -0.6573871 0.7254323 2
13364 1.290580 -0.6573871 0.7254323 3
13365 1.290580 -0.6573871 0.7254323 1
13366 1.290580 -0.6573871 0.7254323 3
13367 1.290580 -0.6573871 0.7254323 1
13368 1.290580 -0.6573871 0.7254323 3
13369 1.290580 -0.6573871 0.7254323 2
13370 1.290580 -0.6573871 0.7254323 3
13371 1.290580 -0.6573871 0.7254323 3
13372 1.290580 -0.6573871 0.7254323 2
13373 1.290580 -0.6573871 0.7254323 2
13374 1.290580 -0.6573871 0.7254323 2
13375 1.290580 -0.6573871 0.7254323 3
13376 1.290580 -0.6573871 0.7254323 2
13377 1.290580 -0.6573871 0.7254323 1
13378 1.290580 -0.6573871 0.7254323 3
13379 1.290580 -0.6573871 0.7254323 3
13380 1.290580 -0.6573871 0.7254323 1
13381 1.290580 -0.6573871 0.7254323 2
13382 1.290580 -0.6573871 0.7254323 1
13383 1.290580 -0.6573871 0.7254323 1
13384 1.290580 -0.6573871 0.7254323 3
13385 1.290580 -0.6573871 0.7254323 1
13386 1.290580 -0.6573871 0.7254323 3
13387 1.290580 -0.6573871 0.7254323 1
13388 1.290580 -0.6573871 0.7254323 1
13389 1.290580 -0.6573871 0.7254323 1
13390 1.290580 -0.6573871 0.7254323 3
13391 1.290580 -0.6573871 0.7254323 1
13392 1.290580 -0.6573871 0.7254323 3
13393 1.290580 -0.6573871 0.7254323 1
13394 1.290580 -0.6573871 0.7254323 1
13395 1.290580 -0.6573871 0.7254323 1
13396 1.290580 -0.6573871 0.7254323 2
13397 1.290580 -0.6573871 0.7254323 3
13398 1.290580 -0.6573871 0.7254323 3
13399 1.290580 -0.6573871 0.7254323 2
13400 1.290580 -0.6573871 0.7254323 2
13401 1.290580 -0.6573871 0.7254323 2
13402 1.290580 -0.6573871 0.7254323 2
13403 1.290580 -0.6573871 0.7254323 1
13404 1.290580 -0.6573871 0.7254323 3
13405 1.290580 -0.6573871 0.7254323 3
13406 1.290580 -0.6573871 0.7254323 2
13407 1.290580 -0.6573871 0.7254323 1
13408 1.290580 -0.6573871 0.7254323 1
13409 1.290580 -0.6573871 0.7254323 1
13410 1.290580 -0.6573871 0.7254323 3
13411 1.290580 -0.6573871 0.7254323 2
13412 1.290580 -0.6573871 0.7254323 3
13413 1.290580 -0.6573871 0.7254323 3
13414 1.290580 -0.6573871 0.7254323 2
13415 1.290580 -0.6573871 0.7254323 1
13416 1.290580 -0.6573871 0.7254323 1
13417 1.290580 -0.6573871 0.7254323 3
13418 1.290580 -0.6573871 0.7254323 2
13419 1.290580 -0.6573871 0.7254323 2
13420 1.290580 -0.6573871 0.7254323 1
13421 1.290580 -0.6573871 0.7254323 3
13422 1.290580 -0.6573871 0.7254323 1
13423 1.290580 -0.6573871 0.7254323 2
13424 1.290580 -0.6573871 0.7254323 1
13425 1.290580 -0.6573871 0.7254323 1
13426 1.290580 -0.6573871 0.7254323 3
13427 1.290580 -0.6573871 0.7254323 1
13428 1.290580 -0.6573871 0.7254323 3
13429 1.290580 -0.6573871 0.7254323 3
13430 1.290580 -0.6573871 0.7254323 3
13431 1.290580 -0.6573871 0.7254323 2
13432 1.290580 -0.6573871 0.7254323 1
13433 1.290580 -0.6573871 0.7254323 1
13434 1.290580 -0.6573871 0.7254323 1
13435 1.290580 -0.6573871 0.7254323 2
13436 1.290580 -0.6573871 0.7254323 1
13437 1.290580 -0.6573871 0.7254323 2
13438 1.290580 -0.6573871 0.7254323 1
13439 1.290580 -0.6573871 0.7254323 1
13440 1.290580 -0.6573871 0.7254323 2
13441 1.290580 -0.6573871 0.7254323 3
13442 1.290580 -0.6573871 0.7254323 1
13443 1.290580 -0.6573871 0.7254323 2
13444 1.290580 -0.6573871 0.7254323 2
13445 1.290580 -0.6573871 0.7254323 2
13446 1.290580 -0.6573871 0.7254323 1
13447 1.290580 -0.6573871 0.7254323 2
13448 1.290580 -0.6573871 0.7254323 2
13449 1.290580 -0.6573871 0.7254323 2
13450 1.290580 -0.6573871 0.7254323 1
13451 1.290580 -0.6573871 0.7254323 1
13452 1.290580 -0.6573871 0.7254323 2
13453 1.290580 -0.6573871 0.7254323 1
13454 1.290580 -0.6573871 0.7254323 3
13455 1.290580 -0.6573871 0.7254323 3
13456 1.290580 -0.6573871 0.7254323 3
13457 1.290580 -0.6573871 0.7254323 1
13458 1.290580 -0.6573871 0.7254323 3
13459 1.290580 -0.6573871 0.7254323 1
13460 1.290580 -0.6573871 0.7254323 1
13461 1.290580 -0.6573871 0.7254323 1
13462 1.290580 -0.6573871 0.7254323 1
13463 1.290580 -0.6573871 0.7254323 1
13464 1.290580 -0.6573871 0.7254323 2
13465 1.290580 -0.6573871 0.7254323 2
13466 1.290580 -0.6573871 0.7254323 3
13467 1.290580 -0.6573871 0.7254323 1
13468 1.290580 -0.6573871 0.7254323 2
13469 1.290580 -0.6573871 0.7254323 1
13470 1.290580 -0.6573871 0.7254323 2
13471 1.290580 -0.6573871 0.7254323 2
13472 1.290580 -0.6573871 0.7254323 2
13473 1.290580 -0.6573871 0.7254323 2
13474 1.290580 -0.6573871 0.7254323 3
13475 1.290580 -0.6573871 0.7254323 1
13476 1.290580 -0.6573871 0.7254323 3
13477 1.290580 -0.6573871 0.7254323 2
13478 1.290580 -0.6573871 0.7254323 1
13479 1.290580 -0.6573871 0.7254323 3
13480 1.290580 -0.6573871 0.7254323 2
13481 1.290580 -0.6573871 0.7254323 3
13482 1.290580 -0.6573871 0.7254323 3
13483 1.290580 -0.6573871 0.7254323 1
13484 1.290580 -0.6573871 0.7254323 2
13485 1.290580 -0.6573871 0.7254323 1
13486 1.290580 -0.6573871 0.7254323 1
13487 1.290580 -0.6573871 0.7254323 1
13488 1.290580 -0.6573871 0.7254323 1
13489 1.290580 -0.6573871 0.7254323 3
13490 1.290580 -0.6573871 0.7254323 1
13491 1.290580 -0.6573871 0.7254323 1
13492 1.290580 -0.6573871 0.7254323 3
13493 1.290580 -0.6573871 0.7254323 1
13494 1.290580 -0.6573871 0.7254323 2
13495 1.290580 -0.6573871 0.7254323 2
13496 1.290580 -0.6573871 0.7254323 1
13497 1.290580 -0.6573871 0.7254323 3
13498 1.290580 -0.6573871 0.7254323 3
13499 1.290580 -0.6573871 0.7254323 3
13500 1.290580 -0.6573871 0.7254323 1
13501 1.290580 -0.6573871 0.7254323 3
13502 1.290580 -0.6573871 0.7254323 2
13503 1.290580 -0.6573871 0.7254323 3
13504 1.290580 -0.6573871 0.7254323 1
13505 1.290580 -0.6573871 0.7254323 2
13506 1.290580 -0.6573871 0.7254323 3
13507 1.290580 -0.6573871 0.7254323 2
13508 1.290580 -0.6573871 0.7254323 3
13509 1.290580 -0.6573871 0.7254323 2
13510 1.290580 -0.6573871 0.7254323 2
13511 1.290580 -0.6573871 0.7254323 1
13512 1.290580 -0.6573871 0.7254323 3
13513 1.290580 -0.6573871 0.7254323 2
13514 1.290580 -0.6573871 0.7254323 3
13515 1.290580 -0.6573871 0.7254323 2
13516 1.290580 -0.6573871 0.7254323 2
13517 1.290580 -0.6573871 0.7254323 3
13518 1.290580 -0.6573871 0.7254323 2
13519 1.290580 -0.6573871 0.7254323 3
13520 1.290580 -0.6573871 0.7254323 1
13521 1.290580 -0.6573871 0.7254323 3
13522 1.290580 -0.6573871 0.7254323 2
13523 1.290580 -0.6573871 0.7254323 2
13524 1.290580 -0.6573871 0.7254323 2
13525 1.290580 -0.6573871 0.7254323 1
13526 1.290580 -0.6573871 0.7254323 1
13527 1.290580 -0.6573871 0.7254323 1
13528 1.290580 -0.6573871 0.7254323 3
13529 1.290580 -0.6573871 0.7254323 3
13530 1.290580 -0.6573871 0.7254323 1
13531 1.290580 -0.6573871 0.7254323 1
13532 1.290580 -0.6573871 0.7254323 3
13533 1.290580 -0.6573871 0.7254323 2
13534 1.290580 -0.6573871 0.7254323 1
13535 1.290580 -0.6573871 0.7254323 1
13536 1.290580 -0.6573871 0.7254323 1
13537 1.290580 -0.6573871 0.7254323 1
13538 1.290580 -0.6573871 0.7254323 3
13539 1.290580 -0.6573871 0.7254323 1
13540 1.290580 -0.6573871 0.7254323 1
13541 1.290580 -0.6573871 0.7254323 2
13542 1.290580 -0.6573871 0.7254323 2
13543 1.290580 -0.6573871 0.7254323 1
13544 1.290580 -0.6573871 0.7254323 2
13545 1.290580 -0.6573871 0.7254323 2
13546 1.290580 -0.6573871 0.7254323 2
13547 1.290580 -0.6573871 0.7254323 1
13548 1.290580 -0.6573871 0.7254323 2
13549 1.290580 -0.6573871 0.7254323 1
13550 1.290580 -0.6573871 0.7254323 3
13551 1.290580 -0.6573871 0.7254323 3
13552 1.290580 -0.6573871 0.7254323 3
13553 1.290580 -0.6573871 0.7254323 1
13554 1.290580 -0.6573871 0.7254323 2
13555 1.290580 -0.6573871 0.7254323 3
13556 1.290580 -0.6573871 0.7254323 3
13557 1.290580 -0.6573871 0.7254323 2
13558 1.290580 -0.6573871 0.7254323 2
13559 1.290580 -0.6573871 0.7254323 3
13560 1.290580 -0.6573871 0.7254323 2
13561 1.290580 -0.6573871 0.7254323 3
13562 1.290580 -0.6573871 0.7254323 2
13563 1.290580 -0.6573871 0.7254323 1
13564 1.290580 -0.6573871 0.7254323 2
13565 1.290580 -0.6573871 0.7254323 1
13566 1.290580 -0.6573871 0.7254323 1
13567 1.290580 -0.6573871 0.7254323 1
13568 1.290580 -0.6573871 0.7254323 1
13569 1.290580 -0.6573871 0.7254323 2
13570 1.290580 -0.6573871 0.7254323 2
13571 1.290580 -0.6573871 0.7254323 1
13572 1.290580 -0.6573871 0.7254323 2
13573 1.290580 -0.6573871 0.7254323 2
13574 1.290580 -0.6573871 0.7254323 3
13575 1.290580 -0.6573871 0.7254323 1
13576 1.290580 -0.6573871 0.7254323 3
13577 1.290580 -0.6573871 0.7254323 2
13578 1.290580 -0.6573871 0.7254323 3
13579 1.290580 -0.6573871 0.7254323 2
13580 1.290580 -0.6573871 0.7254323 2
13581 1.290580 -0.6573871 0.7254323 1
13582 1.290580 -0.6573871 0.7254323 1
13583 1.290580 -0.6573871 0.7254323 3
13584 1.290580 -0.6573871 0.7254323 3
13585 1.290580 -0.6573871 0.7254323 3
13586 1.290580 -0.6573871 0.7254323 3
13587 1.290580 -0.6573871 0.7254323 3
13588 1.290580 -0.6573871 0.7254323 1
13589 1.290580 -0.6573871 0.7254323 1
13590 1.290580 -0.6573871 0.7254323 2
13591 1.290580 -0.6573871 0.7254323 1
13592 1.290580 -0.6573871 0.7254323 2
13593 1.290580 -0.6573871 0.7254323 2
13594 1.290580 -0.6573871 0.7254323 3
13595 1.290580 -0.6573871 0.7254323 2
13596 1.290580 -0.6573871 0.7254323 2
13597 1.290580 -0.6573871 0.7254323 3
13598 1.290580 -0.6573871 0.7254323 2
13599 1.290580 -0.6573871 0.7254323 2
13600 1.290580 -0.6573871 0.7254323 2
13601 1.290580 -0.6573871 0.7254323 2
13602 1.290580 -0.6573871 0.7254323 1
13603 1.290580 -0.6573871 0.7254323 3
13604 1.290580 -0.6573871 0.7254323 1
13605 1.290580 -0.6573871 0.7254323 1
13606 1.290580 -0.6573871 0.7254323 2
13607 1.290580 -0.6573871 0.7254323 2
13608 1.290580 -0.6573871 0.7254323 1
13609 1.290580 -0.6573871 0.7254323 2
13610 1.290580 -0.6573871 0.7254323 1
13611 1.290580 -0.6573871 0.7254323 2
13612 1.290580 -0.6573871 0.7254323 3
13613 1.290580 -0.6573871 0.7254323 2
13614 1.290580 -0.6573871 0.7254323 2
13615 1.290580 -0.6573871 0.7254323 1
13616 1.290580 -0.6573871 0.7254323 2
13617 1.290580 -0.6573871 0.7254323 3
13618 1.290580 -0.6573871 0.7254323 1
13619 1.290580 -0.6573871 0.7254323 3
13620 1.290580 -0.6573871 0.7254323 1
13621 1.290580 -0.6573871 0.7254323 3
13622 1.290580 -0.6573871 0.7254323 2
13623 1.290580 -0.6573871 0.7254323 1
13624 1.290580 -0.6573871 0.7254323 1
13625 1.290580 -0.6573871 0.7254323 3
13626 1.290580 -0.6573871 0.7254323 3
13627 1.290580 -0.6573871 0.7254323 1
13628 1.290580 -0.6573871 0.7254323 3
13629 1.290580 -0.6573871 0.7254323 3
13630 1.290580 -0.6573871 0.7254323 2
13631 1.290580 -0.6573871 0.7254323 1
13632 1.290580 -0.6573871 0.7254323 2
13633 1.290580 -0.6573871 0.7254323 1
13634 1.290580 -0.6573871 0.7254323 2
13635 1.290580 -0.6573871 0.7254323 2
13636 1.290580 -0.6573871 0.7254323 3
13637 1.290580 -0.6573871 0.7254323 2
13638 1.290580 -0.6573871 0.7254323 3
13639 1.290580 -0.6573871 0.7254323 1
13640 1.290580 -0.6573871 0.7254323 2
13641 1.290580 -0.6573871 0.7254323 2
13642 1.290580 -0.6573871 0.7254323 2
13643 1.290580 -0.6573871 0.7254323 1
13644 1.290580 -0.6573871 0.7254323 1
13645 1.290580 -0.6573871 0.7254323 3
13646 1.290580 -0.6573871 0.7254323 2
13647 1.290580 -0.6573871 0.7254323 2
13648 1.290580 -0.6573871 0.7254323 1
13649 1.290580 -0.6573871 0.7254323 1
13650 1.290580 -0.6573871 0.7254323 1
13651 1.290580 -0.6573871 0.7254323 1
13652 1.290580 -0.6573871 0.7254323 2
13653 1.290580 -0.6573871 0.7254323 1
13654 1.290580 -0.6573871 0.7254323 2
13655 1.290580 -0.6573871 0.7254323 3
13656 1.290580 -0.6573871 0.7254323 3
13657 1.290580 -0.6573871 0.7254323 1
13658 1.290580 -0.6573871 0.7254323 3
13659 1.290580 -0.6573871 0.7254323 2
13660 1.290580 -0.6573871 0.7254323 3
13661 1.290580 -0.6573871 0.7254323 3
13662 1.290580 -0.6573871 0.7254323 1
13663 1.290580 -0.6573871 0.7254323 1
13664 1.290580 -0.6573871 0.7254323 1
13665 1.290580 -0.6573871 0.7254323 2
13666 1.290580 -0.6573871 0.7254323 2
13667 1.290580 -0.6573871 0.7254323 2
13668 1.290580 -0.6573871 0.7254323 1
13669 1.290580 -0.6573871 0.7254323 1
13670 1.290580 -0.6573871 0.7254323 1
13671 1.290580 -0.6573871 0.7254323 1
13672 1.290580 -0.6573871 0.7254323 2
13673 1.290580 -0.6573871 0.7254323 2
13674 1.290580 -0.6573871 0.7254323 3
13675 1.290580 -0.6573871 0.7254323 1
13676 1.290580 -0.6573871 0.7254323 3
13677 1.290580 -0.6573871 0.7254323 3
13678 1.290580 -0.6573871 0.7254323 3
13679 1.290580 -0.6573871 0.7254323 1
13680 1.290580 -0.6573871 0.7254323 3
13681 1.290580 -0.6573871 0.7254323 3
13682 1.290580 -0.6573871 0.7254323 3
13683 1.290580 -0.6573871 0.7254323 1
13684 1.290580 -0.6573871 0.7254323 1
13685 1.290580 -0.6573871 0.7254323 1
13686 1.290580 -0.6573871 0.7254323 3
13687 1.290580 -0.6573871 0.7254323 1
13688 1.290580 -0.6573871 0.7254323 2
13689 1.290580 -0.6573871 0.7254323 3
13690 1.290580 -0.6573871 0.7254323 1
13691 1.290580 -0.6573871 0.7254323 3
13692 1.290580 -0.6573871 0.7254323 3
13693 1.290580 -0.6573871 0.7254323 3
13694 1.290580 -0.6573871 0.7254323 1
13695 1.290580 -0.6573871 0.7254323 3
13696 1.290580 -0.6573871 0.7254323 2
13697 1.290580 -0.6573871 0.7254323 2
13698 1.290580 -0.6573871 0.7254323 3
13699 1.290580 -0.6573871 0.7254323 3
13700 1.290580 -0.6573871 0.7254323 1
13701 1.290580 -0.6573871 0.7254323 2
13702 1.290580 -0.6573871 0.7254323 2
13703 1.290580 -0.6573871 0.7254323 1
13704 1.290580 -0.6573871 0.7254323 1
13705 1.290580 -0.6573871 0.7254323 2
13706 1.290580 -0.6573871 0.7254323 2
13707 1.290580 -0.6573871 0.7254323 1
13708 1.290580 -0.6573871 0.7254323 3
13709 1.290580 -0.6573871 0.7254323 3
13710 1.290580 -0.6573871 0.7254323 3
13711 1.290580 -0.6573871 0.7254323 2
13712 1.290580 -0.6573871 0.7254323 2
13713 1.290580 -0.6573871 0.7254323 2
13714 1.290580 -0.6573871 0.7254323 1
13715 1.290580 -0.6573871 0.7254323 2
13716 1.290580 -0.6573871 0.7254323 2
13717 1.290580 -0.6573871 0.7254323 1
13718 1.290580 -0.6573871 0.7254323 3
13719 1.290580 -0.6573871 0.7254323 1
13720 1.290580 -0.6573871 0.7254323 2
13721 1.290580 -0.6573871 0.7254323 1
13722 1.290580 -0.6573871 0.7254323 2
13723 1.290580 -0.6573871 0.7254323 1
13724 1.290580 -0.6573871 0.7254323 2
13725 1.290580 -0.6573871 0.7254323 1
13726 1.290580 -0.6573871 0.7254323 3
13727 1.290580 -0.6573871 0.7254323 1
13728 1.290580 -0.6573871 0.7254323 3
13729 1.290580 -0.6573871 0.7254323 2
13730 1.290580 -0.6573871 0.7254323 3
13731 1.290580 -0.6573871 0.7254323 1
13732 1.290580 -0.6573871 0.7254323 1
13733 1.290580 -0.6573871 0.7254323 1
13734 1.290580 -0.6573871 0.7254323 3
13735 1.290580 -0.6573871 0.7254323 1
13736 1.290580 -0.6573871 0.7254323 2
13737 1.290580 -0.6573871 0.7254323 2
13738 1.290580 -0.6573871 0.7254323 1
13739 1.290580 -0.6573871 0.7254323 2
13740 1.290580 -0.6573871 0.7254323 1
13741 1.290580 -0.6573871 0.7254323 3
13742 1.290580 -0.6573871 0.7254323 2
13743 1.290580 -0.6573871 0.7254323 2
13744 1.290580 -0.6573871 0.7254323 2
13745 1.290580 -0.6573871 0.7254323 2
13746 1.290580 -0.6573871 0.7254323 3
13747 1.290580 -0.6573871 0.7254323 3
13748 1.290580 -0.6573871 0.7254323 3
13749 1.290580 -0.6573871 0.7254323 2
13750 1.290580 -0.6573871 0.7254323 1
13751 1.290580 -0.6573871 0.7254323 2
13752 1.290580 -0.6573871 0.7254323 1
13753 1.290580 -0.6573871 0.7254323 2
13754 1.290580 -0.6573871 0.7254323 3
13755 1.290580 -0.6573871 0.7254323 3
13756 1.290580 -0.6573871 0.7254323 2
13757 1.290580 -0.6573871 0.7254323 1
13758 1.290580 -0.6573871 0.7254323 3
13759 1.290580 -0.6573871 0.7254323 3
13760 1.290580 -0.6573871 0.7254323 2
13761 1.290580 -0.6573871 0.7254323 1
13762 1.290580 -0.6573871 0.7254323 2
13763 1.290580 -0.6573871 0.7254323 3
13764 1.290580 -0.6573871 0.7254323 2
13765 1.290580 -0.6573871 0.7254323 3
13766 1.290580 -0.6573871 0.7254323 3
13767 1.290580 -0.6573871 0.7254323 2
13768 1.290580 -0.6573871 0.7254323 3
13769 1.290580 -0.6573871 0.7254323 2
13770 1.290580 -0.6573871 0.7254323 3
13771 1.290580 -0.6573871 0.7254323 1
13772 1.290580 -0.6573871 0.7254323 2
13773 1.290580 -0.6573871 0.7254323 2
13774 1.290580 -0.6573871 0.7254323 1
13775 1.290580 -0.6573871 0.7254323 3
13776 1.290580 -0.6573871 0.7254323 1
13777 1.290580 -0.6573871 0.7254323 1
13778 1.290580 -0.6573871 0.7254323 1
13779 1.290580 -0.6573871 0.7254323 2
13780 1.290580 -0.6573871 0.7254323 1
13781 1.290580 -0.6573871 0.7254323 1
13782 1.290580 -0.6573871 0.7254323 3
13783 1.290580 -0.6573871 0.7254323 2
13784 1.290580 -0.6573871 0.7254323 1
13785 1.290580 -0.6573871 0.7254323 2
13786 1.298240 -0.6649772 0.7291395 3
13787 1.298240 -0.6649772 0.7291395 1
13788 1.298240 -0.6649772 0.7291395 1
13789 1.298240 -0.6649772 0.7291395 1
13790 1.298240 -0.6649772 0.7291395 1
13791 1.298240 -0.6649772 0.7291395 2
13792 1.298240 -0.6649772 0.7291395 2
13793 1.298240 -0.6649772 0.7291395 2
13794 1.298240 -0.6649772 0.7291395 3
13795 1.298240 -0.6649772 0.7291395 1
13796 1.298240 -0.6649772 0.7291395 1
13797 1.298240 -0.6649772 0.7291395 2
13798 1.298240 -0.6649772 0.7291395 1
13799 1.298240 -0.6649772 0.7291395 2
13800 1.298240 -0.6649772 0.7291395 3
13801 1.298240 -0.6649772 0.7291395 1
13802 1.298240 -0.6649772 0.7291395 2
13803 1.298240 -0.6649772 0.7291395 3
13804 1.298240 -0.6649772 0.7291395 3
13805 1.298240 -0.6649772 0.7291395 1
13806 1.298240 -0.6649772 0.7291395 2
13807 1.298240 -0.6649772 0.7291395 3
13808 1.298240 -0.6649772 0.7291395 2
13809 1.298240 -0.6649772 0.7291395 1
13810 1.298240 -0.6649772 0.7291395 1
13811 1.298240 -0.6649772 0.7291395 3
13812 1.298240 -0.6649772 0.7291395 1
13813 1.298240 -0.6649772 0.7291395 3
13814 1.298240 -0.6649772 0.7291395 1
13815 1.298240 -0.6649772 0.7291395 1
13816 1.298240 -0.6649772 0.7291395 3
13817 1.298240 -0.6649772 0.7291395 1
13818 1.298240 -0.6649772 0.7291395 2
13819 1.298240 -0.6649772 0.7291395 2
13820 1.298240 -0.6649772 0.7291395 1
13821 1.298240 -0.6649772 0.7291395 3
13822 1.298240 -0.6649772 0.7291395 2
13823 1.298240 -0.6649772 0.7291395 2
13824 1.298240 -0.6649772 0.7291395 1
13825 1.298240 -0.6649772 0.7291395 2
13826 1.298240 -0.6649772 0.7291395 1
13827 1.298240 -0.6649772 0.7291395 1
13828 1.298240 -0.6649772 0.7291395 2
13829 1.298240 -0.6649772 0.7291395 3
13830 1.298240 -0.6649772 0.7291395 1
13831 1.298240 -0.6649772 0.7291395 1
13832 1.298240 -0.6649772 0.7291395 2
13833 1.298240 -0.6649772 0.7291395 2
13834 1.298240 -0.6649772 0.7291395 3
13835 1.298240 -0.6649772 0.7291395 1
13836 1.298240 -0.6649772 0.7291395 1
13837 1.298240 -0.6649772 0.7291395 3
13838 1.298240 -0.6649772 0.7291395 1
13839 1.298240 -0.6649772 0.7291395 2
13840 1.298240 -0.6649772 0.7291395 2
13841 1.298240 -0.6649772 0.7291395 2
13842 1.298240 -0.6649772 0.7291395 1
13843 1.298240 -0.6649772 0.7291395 2
13844 1.298240 -0.6649772 0.7291395 2
13845 1.298240 -0.6649772 0.7291395 2
13846 1.298240 -0.6649772 0.7291395 2
13847 1.298240 -0.6649772 0.7291395 3
13848 1.298240 -0.6649772 0.7291395 2
13849 1.298240 -0.6649772 0.7291395 1
13850 1.298240 -0.6649772 0.7291395 3
13851 1.298240 -0.6649772 0.7291395 2
13852 1.298240 -0.6649772 0.7291395 3
13853 1.298240 -0.6649772 0.7291395 3
13854 1.298240 -0.6649772 0.7291395 1
13855 1.298240 -0.6649772 0.7291395 3
13856 1.298240 -0.6649772 0.7291395 3
13857 1.298240 -0.6649772 0.7291395 3
13858 1.298240 -0.6649772 0.7291395 2
13859 1.298240 -0.6649772 0.7291395 2
13860 1.298240 -0.6649772 0.7291395 2
13861 1.298240 -0.6649772 0.7291395 2
13862 1.298240 -0.6649772 0.7291395 3
13863 1.298240 -0.6649772 0.7291395 3
13864 1.298240 -0.6649772 0.7291395 1
13865 1.298240 -0.6649772 0.7291395 3
13866 1.298240 -0.6649772 0.7291395 1
13867 1.298240 -0.6649772 0.7291395 1
13868 1.298240 -0.6649772 0.7291395 2
13869 1.298240 -0.6649772 0.7291395 1
13870 1.298240 -0.6649772 0.7291395 3
13871 1.298240 -0.6649772 0.7291395 3
13872 1.298240 -0.6649772 0.7291395 3
13873 1.298240 -0.6649772 0.7291395 2
13874 1.298240 -0.6649772 0.7291395 3
13875 1.298240 -0.6649772 0.7291395 2
13876 1.298240 -0.6649772 0.7291395 2
13877 1.298240 -0.6649772 0.7291395 1
13878 1.298240 -0.6649772 0.7291395 1
13879 1.298240 -0.6649772 0.7291395 2
13880 1.298240 -0.6649772 0.7291395 1
13881 1.298240 -0.6649772 0.7291395 2
13882 1.298240 -0.6649772 0.7291395 3
13883 1.298240 -0.6649772 0.7291395 2
13884 1.298240 -0.6649772 0.7291395 2
13885 1.298240 -0.6649772 0.7291395 3
13886 1.298240 -0.6649772 0.7291395 1
13887 1.298240 -0.6649772 0.7291395 2
13888 1.298240 -0.6649772 0.7291395 3
13889 1.298240 -0.6649772 0.7291395 3
13890 1.298240 -0.6649772 0.7291395 3
13891 1.298240 -0.6649772 0.7291395 3
13892 1.298240 -0.6649772 0.7291395 1
13893 1.298240 -0.6649772 0.7291395 1
13894 1.298240 -0.6649772 0.7291395 2
13895 1.298240 -0.6649772 0.7291395 3
13896 1.298240 -0.6649772 0.7291395 1
13897 1.298240 -0.6649772 0.7291395 2
13898 1.298240 -0.6649772 0.7291395 3
13899 1.298240 -0.6649772 0.7291395 2
13900 1.298240 -0.6649772 0.7291395 1
13901 1.298240 -0.6649772 0.7291395 1
13902 1.298240 -0.6649772 0.7291395 2
13903 1.298240 -0.6649772 0.7291395 1
13904 1.298240 -0.6649772 0.7291395 1
13905 1.298240 -0.6649772 0.7291395 1
13906 1.298240 -0.6649772 0.7291395 3
13907 1.298240 -0.6649772 0.7291395 2
13908 1.298240 -0.6649772 0.7291395 3
13909 1.298240 -0.6649772 0.7291395 2
13910 1.298240 -0.6649772 0.7291395 2
13911 1.298240 -0.6649772 0.7291395 2
13912 1.298240 -0.6649772 0.7291395 3
13913 1.298240 -0.6649772 0.7291395 3
13914 1.298240 -0.6649772 0.7291395 3
13915 1.298240 -0.6649772 0.7291395 2
13916 1.298240 -0.6649772 0.7291395 3
13917 1.298240 -0.6649772 0.7291395 3
13918 1.298240 -0.6649772 0.7291395 1
13919 1.298240 -0.6649772 0.7291395 2
13920 1.298240 -0.6649772 0.7291395 3
13921 1.298240 -0.6649772 0.7291395 2
13922 1.298240 -0.6649772 0.7291395 3
13923 1.298240 -0.6649772 0.7291395 3
13924 1.298240 -0.6649772 0.7291395 1
13925 1.298240 -0.6649772 0.7291395 2
13926 1.298240 -0.6649772 0.7291395 1
13927 1.298240 -0.6649772 0.7291395 1
13928 1.298240 -0.6649772 0.7291395 1
13929 1.298240 -0.6649772 0.7291395 3
13930 1.298240 -0.6649772 0.7291395 2
13931 1.298240 -0.6649772 0.7291395 1
13932 1.298240 -0.6649772 0.7291395 1
13933 1.298240 -0.6649772 0.7291395 1
13934 1.298240 -0.6649772 0.7291395 3
13935 1.298240 -0.6649772 0.7291395 2
13936 1.298240 -0.6649772 0.7291395 1
13937 1.298240 -0.6649772 0.7291395 3
13938 1.298240 -0.6649772 0.7291395 3
13939 1.298240 -0.6649772 0.7291395 1
13940 1.298240 -0.6649772 0.7291395 3
13941 1.298240 -0.6649772 0.7291395 1
13942 1.298240 -0.6649772 0.7291395 1
13943 1.298240 -0.6649772 0.7291395 2
13944 1.298240 -0.6649772 0.7291395 2
13945 1.298240 -0.6649772 0.7291395 2
13946 1.298240 -0.6649772 0.7291395 3
13947 1.298240 -0.6649772 0.7291395 1
13948 1.298240 -0.6649772 0.7291395 1
13949 1.298240 -0.6649772 0.7291395 1
13950 1.298240 -0.6649772 0.7291395 2
13951 1.298240 -0.6649772 0.7291395 1
13952 1.298240 -0.6649772 0.7291395 3
13953 1.298240 -0.6649772 0.7291395 1
13954 1.298240 -0.6649772 0.7291395 2
13955 1.298240 -0.6649772 0.7291395 1
13956 1.298240 -0.6649772 0.7291395 2
13957 1.298240 -0.6649772 0.7291395 2
13958 1.298240 -0.6649772 0.7291395 3
13959 1.298240 -0.6649772 0.7291395 1
13960 1.298240 -0.6649772 0.7291395 1
13961 1.298240 -0.6649772 0.7291395 1
13962 1.298240 -0.6649772 0.7291395 2
13963 1.298240 -0.6649772 0.7291395 3
13964 1.298240 -0.6649772 0.7291395 3
13965 1.298240 -0.6649772 0.7291395 3
13966 1.298240 -0.6649772 0.7291395 3
13967 1.298240 -0.6649772 0.7291395 1
13968 1.298240 -0.6649772 0.7291395 3
13969 1.298240 -0.6649772 0.7291395 2
13970 1.298240 -0.6649772 0.7291395 2
13971 1.298240 -0.6649772 0.7291395 2
13972 1.298240 -0.6649772 0.7291395 1
13973 1.298240 -0.6649772 0.7291395 2
13974 1.298240 -0.6649772 0.7291395 1
13975 1.298240 -0.6649772 0.7291395 3
13976 1.298240 -0.6649772 0.7291395 2
13977 1.298240 -0.6649772 0.7291395 3
13978 1.298240 -0.6649772 0.7291395 1
13979 1.298240 -0.6649772 0.7291395 2
13980 1.298240 -0.6649772 0.7291395 2
13981 1.298240 -0.6649772 0.7291395 1
13982 1.298240 -0.6649772 0.7291395 1
13983 1.298240 -0.6649772 0.7291395 1
13984 1.298240 -0.6649772 0.7291395 3
13985 1.298240 -0.6649772 0.7291395 2
13986 1.298240 -0.6649772 0.7291395 2
13987 1.298240 -0.6649772 0.7291395 2
13988 1.298240 -0.6649772 0.7291395 1
13989 1.298240 -0.6649772 0.7291395 2
13990 1.298240 -0.6649772 0.7291395 3
13991 1.298240 -0.6649772 0.7291395 2
13992 1.298240 -0.6649772 0.7291395 1
13993 1.298240 -0.6649772 0.7291395 3
13994 1.298240 -0.6649772 0.7291395 1
13995 1.298240 -0.6649772 0.7291395 1
13996 1.298240 -0.6649772 0.7291395 2
13997 1.298240 -0.6649772 0.7291395 2
13998 1.298240 -0.6649772 0.7291395 3
13999 1.298240 -0.6649772 0.7291395 1
14000 1.298240 -0.6649772 0.7291395 1
14001 1.298240 -0.6649772 0.7291395 1
14002 1.298240 -0.6649772 0.7291395 2
14003 1.298240 -0.6649772 0.7291395 3
14004 1.298240 -0.6649772 0.7291395 1
14005 1.298240 -0.6649772 0.7291395 1
14006 1.298240 -0.6649772 0.7291395 1
14007 1.298240 -0.6649772 0.7291395 1
14008 1.298240 -0.6649772 0.7291395 2
14009 1.298240 -0.6649772 0.7291395 2
14010 1.298240 -0.6649772 0.7291395 2
14011 1.298240 -0.6649772 0.7291395 1
14012 1.298240 -0.6649772 0.7291395 3
14013 1.298240 -0.6649772 0.7291395 1
14014 1.298240 -0.6649772 0.7291395 2
14015 1.298240 -0.6649772 0.7291395 3
14016 1.298240 -0.6649772 0.7291395 1
14017 1.298240 -0.6649772 0.7291395 2
14018 1.298240 -0.6649772 0.7291395 2
14019 1.298240 -0.6649772 0.7291395 1
14020 1.298240 -0.6649772 0.7291395 1
14021 1.298240 -0.6649772 0.7291395 3
14022 1.298240 -0.6649772 0.7291395 1
14023 1.298240 -0.6649772 0.7291395 1
14024 1.298240 -0.6649772 0.7291395 1
14025 1.298240 -0.6649772 0.7291395 2
14026 1.298240 -0.6649772 0.7291395 1
14027 1.298240 -0.6649772 0.7291395 2
14028 1.298240 -0.6649772 0.7291395 2
14029 1.298240 -0.6649772 0.7291395 2
14030 1.298240 -0.6649772 0.7291395 3
14031 1.298240 -0.6649772 0.7291395 1
14032 1.298240 -0.6649772 0.7291395 1
14033 1.298240 -0.6649772 0.7291395 3
14034 1.298240 -0.6649772 0.7291395 1
14035 1.298240 -0.6649772 0.7291395 1
14036 1.298240 -0.6649772 0.7291395 3
14037 1.298240 -0.6649772 0.7291395 2
14038 1.298240 -0.6649772 0.7291395 3
14039 1.298240 -0.6649772 0.7291395 3
14040 1.298240 -0.6649772 0.7291395 2
14041 1.298240 -0.6649772 0.7291395 3
14042 1.298240 -0.6649772 0.7291395 1
14043 1.298240 -0.6649772 0.7291395 3
14044 1.298240 -0.6649772 0.7291395 2
14045 1.298240 -0.6649772 0.7291395 2
14046 1.298240 -0.6649772 0.7291395 2
14047 1.298240 -0.6649772 0.7291395 2
14048 1.298240 -0.6649772 0.7291395 3
14049 1.298240 -0.6649772 0.7291395 2
14050 1.298240 -0.6649772 0.7291395 1
14051 1.298240 -0.6649772 0.7291395 2
14052 1.298240 -0.6649772 0.7291395 1
14053 1.298240 -0.6649772 0.7291395 2
14054 1.298240 -0.6649772 0.7291395 2
14055 1.298240 -0.6649772 0.7291395 3
14056 1.298240 -0.6649772 0.7291395 1
14057 1.298240 -0.6649772 0.7291395 2
14058 1.298240 -0.6649772 0.7291395 3
14059 1.298240 -0.6649772 0.7291395 3
14060 1.298240 -0.6649772 0.7291395 2
14061 1.298240 -0.6649772 0.7291395 2
14062 1.298240 -0.6649772 0.7291395 1
14063 1.298240 -0.6649772 0.7291395 1
14064 1.298240 -0.6649772 0.7291395 1
14065 1.298240 -0.6649772 0.7291395 1
14066 1.298240 -0.6649772 0.7291395 2
14067 1.298240 -0.6649772 0.7291395 1
14068 1.298240 -0.6649772 0.7291395 1
14069 1.298240 -0.6649772 0.7291395 2
14070 1.298240 -0.6649772 0.7291395 3
14071 1.298240 -0.6649772 0.7291395 1
14072 1.298240 -0.6649772 0.7291395 2
14073 1.298240 -0.6649772 0.7291395 3
14074 1.298240 -0.6649772 0.7291395 3
14075 1.298240 -0.6649772 0.7291395 1
14076 1.298240 -0.6649772 0.7291395 1
14077 1.298240 -0.6649772 0.7291395 3
14078 1.298240 -0.6649772 0.7291395 1
14079 1.298240 -0.6649772 0.7291395 2
14080 1.298240 -0.6649772 0.7291395 1
14081 1.298240 -0.6649772 0.7291395 3
14082 1.298240 -0.6649772 0.7291395 1
14083 1.298240 -0.6649772 0.7291395 1
14084 1.298240 -0.6649772 0.7291395 3
14085 1.298240 -0.6649772 0.7291395 2
14086 1.298240 -0.6649772 0.7291395 1
14087 1.298240 -0.6649772 0.7291395 1
14088 1.298240 -0.6649772 0.7291395 1
14089 1.298240 -0.6649772 0.7291395 2
14090 1.298240 -0.6649772 0.7291395 2
14091 1.298240 -0.6649772 0.7291395 3
14092 1.298240 -0.6649772 0.7291395 2
14093 1.298240 -0.6649772 0.7291395 3
14094 1.298240 -0.6649772 0.7291395 1
14095 1.298240 -0.6649772 0.7291395 3
14096 1.298240 -0.6649772 0.7291395 3
14097 1.298240 -0.6649772 0.7291395 2
14098 1.298240 -0.6649772 0.7291395 1
14099 1.298240 -0.6649772 0.7291395 1
14100 1.298240 -0.6649772 0.7291395 1
14101 1.298240 -0.6649772 0.7291395 2
14102 1.298240 -0.6649772 0.7291395 2
14103 1.298240 -0.6649772 0.7291395 2
14104 1.298240 -0.6649772 0.7291395 2
14105 1.298240 -0.6649772 0.7291395 3
14106 1.298240 -0.6649772 0.7291395 2
14107 1.298240 -0.6649772 0.7291395 3
14108 1.298240 -0.6649772 0.7291395 1
14109 1.298240 -0.6649772 0.7291395 3
14110 1.298240 -0.6649772 0.7291395 1
14111 1.298240 -0.6649772 0.7291395 1
14112 1.298240 -0.6649772 0.7291395 1
14113 1.298240 -0.6649772 0.7291395 1
14114 1.298240 -0.6649772 0.7291395 3
14115 1.298240 -0.6649772 0.7291395 3
14116 1.298240 -0.6649772 0.7291395 2
14117 1.298240 -0.6649772 0.7291395 2
14118 1.298240 -0.6649772 0.7291395 1
14119 1.298240 -0.6649772 0.7291395 1
14120 1.298240 -0.6649772 0.7291395 1
14121 1.298240 -0.6649772 0.7291395 3
14122 1.298240 -0.6649772 0.7291395 1
14123 1.298240 -0.6649772 0.7291395 2
14124 1.298240 -0.6649772 0.7291395 1
14125 1.298240 -0.6649772 0.7291395 3
14126 1.298240 -0.6649772 0.7291395 2
14127 1.298240 -0.6649772 0.7291395 3
14128 1.298240 -0.6649772 0.7291395 1
14129 1.298240 -0.6649772 0.7291395 1
14130 1.298240 -0.6649772 0.7291395 1
14131 1.298240 -0.6649772 0.7291395 1
14132 1.298240 -0.6649772 0.7291395 1
14133 1.298240 -0.6649772 0.7291395 3
14134 1.298240 -0.6649772 0.7291395 1
14135 1.298240 -0.6649772 0.7291395 2
14136 1.298240 -0.6649772 0.7291395 1
14137 1.298240 -0.6649772 0.7291395 2
14138 1.298240 -0.6649772 0.7291395 2
14139 1.298240 -0.6649772 0.7291395 3
14140 1.298240 -0.6649772 0.7291395 1
14141 1.298240 -0.6649772 0.7291395 1
14142 1.298240 -0.6649772 0.7291395 3
14143 1.298240 -0.6649772 0.7291395 3
14144 1.298240 -0.6649772 0.7291395 2
14145 1.298240 -0.6649772 0.7291395 2
14146 1.298240 -0.6649772 0.7291395 1
14147 1.298240 -0.6649772 0.7291395 2
14148 1.298240 -0.6649772 0.7291395 1
14149 1.298240 -0.6649772 0.7291395 2
14150 1.298240 -0.6649772 0.7291395 3
14151 1.298240 -0.6649772 0.7291395 1
14152 1.298240 -0.6649772 0.7291395 1
14153 1.298240 -0.6649772 0.7291395 1
14154 1.298240 -0.6649772 0.7291395 1
14155 1.298240 -0.6649772 0.7291395 2
14156 1.298240 -0.6649772 0.7291395 1
14157 1.298240 -0.6649772 0.7291395 3
14158 1.298240 -0.6649772 0.7291395 1
14159 1.298240 -0.6649772 0.7291395 2
14160 1.298240 -0.6649772 0.7291395 3
14161 1.298240 -0.6649772 0.7291395 2
14162 1.298240 -0.6649772 0.7291395 3
14163 1.298240 -0.6649772 0.7291395 1
14164 1.298240 -0.6649772 0.7291395 1
14165 1.298240 -0.6649772 0.7291395 1
14166 1.298240 -0.6649772 0.7291395 3
14167 1.298240 -0.6649772 0.7291395 2
14168 1.298240 -0.6649772 0.7291395 1
14169 1.298240 -0.6649772 0.7291395 1
14170 1.298240 -0.6649772 0.7291395 2
14171 1.298240 -0.6649772 0.7291395 2
14172 1.298240 -0.6649772 0.7291395 2
14173 1.298240 -0.6649772 0.7291395 2
14174 1.298240 -0.6649772 0.7291395 1
14175 1.298240 -0.6649772 0.7291395 2
14176 1.298240 -0.6649772 0.7291395 1
14177 1.298240 -0.6649772 0.7291395 3
14178 1.298240 -0.6649772 0.7291395 1
14179 1.298240 -0.6649772 0.7291395 3
14180 1.298240 -0.6649772 0.7291395 1
14181 1.298240 -0.6649772 0.7291395 2
14182 1.298240 -0.6649772 0.7291395 1
14183 1.298240 -0.6649772 0.7291395 2
14184 1.298240 -0.6649772 0.7291395 3
14185 1.298240 -0.6649772 0.7291395 3
14186 1.298240 -0.6649772 0.7291395 2
14187 1.298240 -0.6649772 0.7291395 2
14188 1.298240 -0.6649772 0.7291395 1
14189 1.298240 -0.6649772 0.7291395 3
14190 1.298240 -0.6649772 0.7291395 2
14191 1.298240 -0.6649772 0.7291395 1
14192 1.298240 -0.6649772 0.7291395 2
14193 1.298240 -0.6649772 0.7291395 2
14194 1.298240 -0.6649772 0.7291395 3
14195 1.298240 -0.6649772 0.7291395 3
14196 1.298240 -0.6649772 0.7291395 2
14197 1.298240 -0.6649772 0.7291395 2
14198 1.298240 -0.6649772 0.7291395 2
14199 1.298240 -0.6649772 0.7291395 1
14200 1.298240 -0.6649772 0.7291395 1
14201 1.298240 -0.6649772 0.7291395 1
14202 1.298240 -0.6649772 0.7291395 3
14203 1.298240 -0.6649772 0.7291395 2
14204 1.298240 -0.6649772 0.7291395 2
14205 1.298240 -0.6649772 0.7291395 2
14206 1.298240 -0.6649772 0.7291395 3
14207 1.298240 -0.6649772 0.7291395 1
14208 1.298240 -0.6649772 0.7291395 2
14209 1.298240 -0.6649772 0.7291395 3
14210 1.298240 -0.6649772 0.7291395 2
14211 1.298240 -0.6649772 0.7291395 2
14212 1.298240 -0.6649772 0.7291395 3
14213 1.298240 -0.6649772 0.7291395 1
14214 1.298240 -0.6649772 0.7291395 3
14215 1.298240 -0.6649772 0.7291395 2
14216 1.298240 -0.6649772 0.7291395 2
14217 1.298240 -0.6649772 0.7291395 2
14218 1.298240 -0.6649772 0.7291395 2
14219 1.298240 -0.6649772 0.7291395 2
14220 1.298240 -0.6649772 0.7291395 2
14221 1.298240 -0.6649772 0.7291395 2
14222 1.298240 -0.6649772 0.7291395 1
14223 1.298240 -0.6649772 0.7291395 3
14224 1.298240 -0.6649772 0.7291395 2
14225 1.298240 -0.6649772 0.7291395 3
14226 1.298240 -0.6649772 0.7291395 3
14227 1.298240 -0.6649772 0.7291395 1
14228 1.298240 -0.6649772 0.7291395 1
14229 1.298240 -0.6649772 0.7291395 2
14230 1.298240 -0.6649772 0.7291395 2
14231 1.298240 -0.6649772 0.7291395 3
14232 1.298240 -0.6649772 0.7291395 2
14233 1.298240 -0.6649772 0.7291395 2
14234 1.298240 -0.6649772 0.7291395 2
14235 1.298240 -0.6649772 0.7291395 1
14236 1.298240 -0.6649772 0.7291395 3
14237 1.298240 -0.6649772 0.7291395 2
14238 1.298240 -0.6649772 0.7291395 2
14239 1.298240 -0.6649772 0.7291395 2
14240 1.298240 -0.6649772 0.7291395 3
14241 1.298240 -0.6649772 0.7291395 2
14242 1.298240 -0.6649772 0.7291395 2
14243 1.298240 -0.6649772 0.7291395 1
14244 1.298240 -0.6649772 0.7291395 3
14245 1.298240 -0.6649772 0.7291395 2
14246 1.298240 -0.6649772 0.7291395 1
14247 1.298240 -0.6649772 0.7291395 1
14248 1.298240 -0.6649772 0.7291395 3
14249 1.298240 -0.6649772 0.7291395 1
14250 1.298240 -0.6649772 0.7291395 3
14251 1.298240 -0.6649772 0.7291395 2
14252 1.298240 -0.6649772 0.7291395 1
14253 1.298240 -0.6649772 0.7291395 1
14254 1.298240 -0.6649772 0.7291395 1
14255 1.298240 -0.6649772 0.7291395 2
14256 1.298240 -0.6649772 0.7291395 2
14257 1.298240 -0.6649772 0.7291395 2
14258 1.298240 -0.6649772 0.7291395 2
14259 1.298240 -0.6649772 0.7291395 1
14260 1.298240 -0.6649772 0.7291395 2
14261 1.298240 -0.6649772 0.7291395 2
14262 1.298240 -0.6649772 0.7291395 2
14263 1.298240 -0.6649772 0.7291395 3
14264 1.298240 -0.6649772 0.7291395 2
14265 1.298240 -0.6649772 0.7291395 1
14266 1.298240 -0.6649772 0.7291395 1
14267 1.298240 -0.6649772 0.7291395 3
14268 1.298240 -0.6649772 0.7291395 3
14269 1.298240 -0.6649772 0.7291395 2
14270 1.298240 -0.6649772 0.7291395 1
14271 1.298240 -0.6649772 0.7291395 1
14272 1.298240 -0.6649772 0.7291395 2
14273 1.298240 -0.6649772 0.7291395 1
14274 1.298240 -0.6649772 0.7291395 1
14275 1.298240 -0.6649772 0.7291395 1
14276 1.298240 -0.6649772 0.7291395 1
14277 1.298240 -0.6649772 0.7291395 2
14278 1.298240 -0.6649772 0.7291395 3
14279 1.298240 -0.6649772 0.7291395 2
14280 1.298240 -0.6649772 0.7291395 3
14281 1.298240 -0.6649772 0.7291395 1
14282 1.298240 -0.6649772 0.7291395 3
14283 1.298240 -0.6649772 0.7291395 2
14284 1.298240 -0.6649772 0.7291395 3
14285 1.298240 -0.6649772 0.7291395 2
14286 1.298240 -0.6649772 0.7291395 3
14287 1.298240 -0.6649772 0.7291395 3
14288 1.298240 -0.6649772 0.7291395 2
14289 1.298240 -0.6649772 0.7291395 2
14290 1.298240 -0.6649772 0.7291395 2
14291 1.298240 -0.6649772 0.7291395 1
14292 1.298240 -0.6649772 0.7291395 2
14293 1.298240 -0.6649772 0.7291395 1
14294 1.298240 -0.6649772 0.7291395 3
14295 1.298240 -0.6649772 0.7291395 3
14296 1.298240 -0.6649772 0.7291395 1
14297 1.298240 -0.6649772 0.7291395 1
14298 1.298240 -0.6649772 0.7291395 1
14299 1.298240 -0.6649772 0.7291395 3
14300 1.298240 -0.6649772 0.7291395 3
14301 1.298240 -0.6649772 0.7291395 1
14302 1.298240 -0.6649772 0.7291395 1
14303 1.298240 -0.6649772 0.7291395 1
14304 1.298240 -0.6649772 0.7291395 1
14305 1.298240 -0.6649772 0.7291395 2
14306 1.298240 -0.6649772 0.7291395 1
14307 1.298240 -0.6649772 0.7291395 2
14308 1.298240 -0.6649772 0.7291395 3
14309 1.298240 -0.6649772 0.7291395 1
14310 1.298240 -0.6649772 0.7291395 3
14311 1.298240 -0.6649772 0.7291395 3
14312 1.298240 -0.6649772 0.7291395 2
14313 1.298240 -0.6649772 0.7291395 2
14314 1.298240 -0.6649772 0.7291395 2
14315 1.298240 -0.6649772 0.7291395 2
14316 1.298240 -0.6649772 0.7291395 1
14317 1.298240 -0.6649772 0.7291395 1
14318 1.298240 -0.6649772 0.7291395 2
14319 1.298240 -0.6649772 0.7291395 2
14320 1.298240 -0.6649772 0.7291395 3
14321 1.298240 -0.6649772 0.7291395 1
14322 1.298240 -0.6649772 0.7291395 3
14323 1.298240 -0.6649772 0.7291395 3
14324 1.298240 -0.6649772 0.7291395 2
14325 1.298240 -0.6649772 0.7291395 2
14326 1.298240 -0.6649772 0.7291395 2
14327 1.298240 -0.6649772 0.7291395 2
14328 1.298240 -0.6649772 0.7291395 3
14329 1.298240 -0.6649772 0.7291395 2
14330 1.298240 -0.6649772 0.7291395 1
14331 1.298240 -0.6649772 0.7291395 1
14332 1.298240 -0.6649772 0.7291395 2
14333 1.298240 -0.6649772 0.7291395 1
14334 1.298240 -0.6649772 0.7291395 1
14335 1.298240 -0.6649772 0.7291395 1
14336 1.298240 -0.6649772 0.7291395 1
14337 1.298240 -0.6649772 0.7291395 1
14338 1.298240 -0.6649772 0.7291395 1
14339 1.298240 -0.6649772 0.7291395 3
14340 1.298240 -0.6649772 0.7291395 3
14341 1.298240 -0.6649772 0.7291395 3
14342 1.298240 -0.6649772 0.7291395 3
14343 1.298240 -0.6649772 0.7291395 3
14344 1.298240 -0.6649772 0.7291395 3
14345 1.298240 -0.6649772 0.7291395 3
14346 1.298240 -0.6649772 0.7291395 2
14347 1.298240 -0.6649772 0.7291395 3
14348 1.298240 -0.6649772 0.7291395 3
14349 1.298240 -0.6649772 0.7291395 1
14350 1.298240 -0.6649772 0.7291395 1
14351 1.298240 -0.6649772 0.7291395 1
14352 1.298240 -0.6649772 0.7291395 2
14353 1.298240 -0.6649772 0.7291395 1
14354 1.298240 -0.6649772 0.7291395 1
14355 1.298240 -0.6649772 0.7291395 1
14356 1.298240 -0.6649772 0.7291395 1
14357 1.298240 -0.6649772 0.7291395 2
14358 1.298240 -0.6649772 0.7291395 3
14359 1.298240 -0.6649772 0.7291395 1
14360 1.298240 -0.6649772 0.7291395 2
14361 1.298240 -0.6649772 0.7291395 1
14362 1.298240 -0.6649772 0.7291395 2
14363 1.298240 -0.6649772 0.7291395 2
14364 1.298240 -0.6649772 0.7291395 1
14365 1.298240 -0.6649772 0.7291395 1
14366 1.298240 -0.6649772 0.7291395 3
14367 1.298240 -0.6649772 0.7291395 1
14368 1.298240 -0.6649772 0.7291395 1
14369 1.298240 -0.6649772 0.7291395 1
14370 1.298240 -0.6649772 0.7291395 2
14371 1.298240 -0.6649772 0.7291395 2
14372 1.298240 -0.6649772 0.7291395 2
14373 1.298240 -0.6649772 0.7291395 3
14374 1.298240 -0.6649772 0.7291395 2
14375 1.298240 -0.6649772 0.7291395 2
14376 1.298240 -0.6649772 0.7291395 1
14377 1.298240 -0.6649772 0.7291395 2
14378 1.298240 -0.6649772 0.7291395 3
14379 1.298240 -0.6649772 0.7291395 1
14380 1.298240 -0.6649772 0.7291395 2
14381 1.298240 -0.6649772 0.7291395 1
14382 1.298240 -0.6649772 0.7291395 3
14383 1.298240 -0.6649772 0.7291395 3
14384 1.298240 -0.6649772 0.7291395 2
14385 1.298240 -0.6649772 0.7291395 2
14386 1.298240 -0.6649772 0.7291395 2
14387 1.298240 -0.6649772 0.7291395 2
14388 1.298240 -0.6649772 0.7291395 3
14389 1.298240 -0.6649772 0.7291395 3
14390 1.298240 -0.6649772 0.7291395 1
14391 1.298240 -0.6649772 0.7291395 3
14392 1.298240 -0.6649772 0.7291395 3
14393 1.298240 -0.6649772 0.7291395 1
14394 1.298240 -0.6649772 0.7291395 3
14395 1.298240 -0.6649772 0.7291395 3
14396 1.298240 -0.6649772 0.7291395 2
14397 1.298240 -0.6649772 0.7291395 3
14398 1.298240 -0.6649772 0.7291395 1
14399 1.298240 -0.6649772 0.7291395 1
14400 1.298240 -0.6649772 0.7291395 3
14401 1.298240 -0.6649772 0.7291395 1
14402 1.298240 -0.6649772 0.7291395 3
14403 1.298240 -0.6649772 0.7291395 3
14404 1.298240 -0.6649772 0.7291395 3
14405 1.298240 -0.6649772 0.7291395 2
14406 1.298240 -0.6649772 0.7291395 3
14407 1.298240 -0.6649772 0.7291395 3
14408 1.298240 -0.6649772 0.7291395 3
14409 1.298240 -0.6649772 0.7291395 3
14410 1.298240 -0.6649772 0.7291395 1
14411 1.298240 -0.6649772 0.7291395 2
14412 1.298240 -0.6649772 0.7291395 1
14413 1.298240 -0.6649772 0.7291395 2
14414 1.298240 -0.6649772 0.7291395 1
14415 1.298240 -0.6649772 0.7291395 1
14416 1.298240 -0.6649772 0.7291395 1
14417 1.298240 -0.6649772 0.7291395 2
14418 1.298240 -0.6649772 0.7291395 3
14419 1.298240 -0.6649772 0.7291395 2
14420 1.298240 -0.6649772 0.7291395 3
14421 1.298240 -0.6649772 0.7291395 3
14422 1.298240 -0.6649772 0.7291395 1
14423 1.298240 -0.6649772 0.7291395 1
14424 1.298240 -0.6649772 0.7291395 1
14425 1.298240 -0.6649772 0.7291395 3
14426 1.298240 -0.6649772 0.7291395 3
14427 1.298240 -0.6649772 0.7291395 1
14428 1.298240 -0.6649772 0.7291395 3
14429 1.298240 -0.6649772 0.7291395 1
14430 1.298240 -0.6649772 0.7291395 1
14431 1.298240 -0.6649772 0.7291395 3
14432 1.298240 -0.6649772 0.7291395 1
14433 1.298240 -0.6649772 0.7291395 2
14434 1.298240 -0.6649772 0.7291395 2
14435 1.298240 -0.6649772 0.7291395 1
14436 1.298240 -0.6649772 0.7291395 1
14437 1.298240 -0.6649772 0.7291395 1
14438 1.298240 -0.6649772 0.7291395 1
14439 1.298240 -0.6649772 0.7291395 3
14440 1.298240 -0.6649772 0.7291395 3
14441 1.298240 -0.6649772 0.7291395 3
14442 1.298240 -0.6649772 0.7291395 3
14443 1.298240 -0.6649772 0.7291395 1
14444 1.298240 -0.6649772 0.7291395 1
14445 1.298240 -0.6649772 0.7291395 3
14446 1.298240 -0.6649772 0.7291395 1
14447 1.298240 -0.6649772 0.7291395 3
14448 1.298240 -0.6649772 0.7291395 1
14449 1.298240 -0.6649772 0.7291395 2
14450 1.298240 -0.6649772 0.7291395 3
14451 1.298240 -0.6649772 0.7291395 2
14452 1.298240 -0.6649772 0.7291395 2
14453 1.298240 -0.6649772 0.7291395 3
14454 1.298240 -0.6649772 0.7291395 3
14455 1.298240 -0.6649772 0.7291395 2
14456 1.298240 -0.6649772 0.7291395 2
14457 1.298240 -0.6649772 0.7291395 2
14458 1.298240 -0.6649772 0.7291395 2
14459 1.298240 -0.6649772 0.7291395 1
14460 1.298240 -0.6649772 0.7291395 3
14461 1.298240 -0.6649772 0.7291395 2
14462 1.298240 -0.6649772 0.7291395 3
14463 1.298240 -0.6649772 0.7291395 1
14464 1.298240 -0.6649772 0.7291395 1
14465 1.298240 -0.6649772 0.7291395 3
14466 1.298240 -0.6649772 0.7291395 3
14467 1.298240 -0.6649772 0.7291395 2
14468 1.298240 -0.6649772 0.7291395 2
14469 1.298240 -0.6649772 0.7291395 1
14470 1.298240 -0.6649772 0.7291395 2
14471 1.298240 -0.6649772 0.7291395 2
14472 1.298240 -0.6649772 0.7291395 1
14473 1.298240 -0.6649772 0.7291395 3
14474 1.298240 -0.6649772 0.7291395 1
14475 1.298240 -0.6649772 0.7291395 1
14476 1.298240 -0.6649772 0.7291395 2
14477 1.298240 -0.6649772 0.7291395 1
14478 1.298240 -0.6649772 0.7291395 2
14479 1.298240 -0.6649772 0.7291395 1
14480 1.298240 -0.6649772 0.7291395 1
14481 1.298240 -0.6649772 0.7291395 3
14482 1.298240 -0.6649772 0.7291395 3
14483 1.298240 -0.6649772 0.7291395 1
14484 1.298240 -0.6649772 0.7291395 1
14485 1.298240 -0.6649772 0.7291395 2
14486 1.298240 -0.6649772 0.7291395 1
14487 1.298240 -0.6649772 0.7291395 1
14488 1.298240 -0.6649772 0.7291395 2
14489 1.298240 -0.6649772 0.7291395 1
14490 1.298240 -0.6649772 0.7291395 1
14491 1.298240 -0.6649772 0.7291395 1
14492 1.298240 -0.6649772 0.7291395 1
14493 1.298240 -0.6649772 0.7291395 1
14494 1.298240 -0.6649772 0.7291395 3
14495 1.298240 -0.6649772 0.7291395 1
14496 1.298240 -0.6649772 0.7291395 3
14497 1.298240 -0.6649772 0.7291395 1
14498 1.298240 -0.6649772 0.7291395 2
14499 1.298240 -0.6649772 0.7291395 1
14500 1.298240 -0.6649772 0.7291395 1
14501 1.298240 -0.6649772 0.7291395 2
14502 1.298240 -0.6649772 0.7291395 2
14503 1.298240 -0.6649772 0.7291395 2
14504 1.298240 -0.6649772 0.7291395 3
14505 1.298240 -0.6649772 0.7291395 1
14506 1.298240 -0.6649772 0.7291395 1
14507 1.298240 -0.6649772 0.7291395 1
14508 1.298240 -0.6649772 0.7291395 2
14509 1.298240 -0.6649772 0.7291395 2
14510 1.298240 -0.6649772 0.7291395 2
14511 1.298240 -0.6649772 0.7291395 3
14512 1.298240 -0.6649772 0.7291395 2
14513 1.298240 -0.6649772 0.7291395 2
14514 1.298240 -0.6649772 0.7291395 1
14515 1.298240 -0.6649772 0.7291395 1
14516 1.298240 -0.6649772 0.7291395 3
14517 1.298240 -0.6649772 0.7291395 1
14518 1.298240 -0.6649772 0.7291395 2
14519 1.298240 -0.6649772 0.7291395 2
14520 1.298240 -0.6649772 0.7291395 3
14521 1.298240 -0.6649772 0.7291395 1
14522 1.298240 -0.6649772 0.7291395 2
14523 1.298240 -0.6649772 0.7291395 3
14524 1.298240 -0.6649772 0.7291395 1
14525 1.298240 -0.6649772 0.7291395 3
14526 1.298240 -0.6649772 0.7291395 1
14527 1.298240 -0.6649772 0.7291395 1
14528 1.298240 -0.6649772 0.7291395 1
14529 1.298240 -0.6649772 0.7291395 2
14530 1.298240 -0.6649772 0.7291395 3
14531 1.298240 -0.6649772 0.7291395 2
14532 1.298240 -0.6649772 0.7291395 1
14533 1.298240 -0.6649772 0.7291395 2
14534 1.298240 -0.6649772 0.7291395 3
14535 1.298240 -0.6649772 0.7291395 3
14536 1.298240 -0.6649772 0.7291395 3
14537 1.298240 -0.6649772 0.7291395 2
14538 1.298240 -0.6649772 0.7291395 1
14539 1.298240 -0.6649772 0.7291395 3
14540 1.298240 -0.6649772 0.7291395 2
14541 1.298240 -0.6649772 0.7291395 2
14542 1.298240 -0.6649772 0.7291395 1
14543 1.298240 -0.6649772 0.7291395 2
14544 1.298240 -0.6649772 0.7291395 3
14545 1.298240 -0.6649772 0.7291395 2
14546 1.298240 -0.6649772 0.7291395 2
14547 1.298240 -0.6649772 0.7291395 1
14548 1.298240 -0.6649772 0.7291395 2
14549 1.298240 -0.6649772 0.7291395 2
14550 1.298240 -0.6649772 0.7291395 3
14551 1.298240 -0.6649772 0.7291395 2
14552 1.298240 -0.6649772 0.7291395 3
14553 1.298240 -0.6649772 0.7291395 1
14554 1.298240 -0.6649772 0.7291395 2
14555 1.298240 -0.6649772 0.7291395 1
14556 1.298240 -0.6649772 0.7291395 2
14557 1.298240 -0.6649772 0.7291395 3
14558 1.298240 -0.6649772 0.7291395 3
14559 1.298240 -0.6649772 0.7291395 1
14560 1.298240 -0.6649772 0.7291395 3
14561 1.298240 -0.6649772 0.7291395 3
14562 1.298240 -0.6649772 0.7291395 1
14563 1.298240 -0.6649772 0.7291395 3
14564 1.298240 -0.6649772 0.7291395 3
14565 1.298240 -0.6649772 0.7291395 1
14566 1.298240 -0.6649772 0.7291395 1
14567 1.298240 -0.6649772 0.7291395 2
14568 1.298240 -0.6649772 0.7291395 2
14569 1.298240 -0.6649772 0.7291395 1
14570 1.298240 -0.6649772 0.7291395 2
14571 1.298240 -0.6649772 0.7291395 1
14572 1.298240 -0.6649772 0.7291395 2
14573 1.298240 -0.6649772 0.7291395 1
14574 1.298240 -0.6649772 0.7291395 1
14575 1.298240 -0.6649772 0.7291395 2
14576 1.298240 -0.6649772 0.7291395 2
14577 1.298240 -0.6649772 0.7291395 3
14578 1.298240 -0.6649772 0.7291395 3
14579 1.298240 -0.6649772 0.7291395 3
14580 1.298240 -0.6649772 0.7291395 1
14581 1.298240 -0.6649772 0.7291395 3
14582 1.298240 -0.6649772 0.7291395 1
14583 1.298240 -0.6649772 0.7291395 1
14584 1.298240 -0.6649772 0.7291395 2
14585 1.298240 -0.6649772 0.7291395 1
14586 1.298240 -0.6649772 0.7291395 3
14587 1.298240 -0.6649772 0.7291395 3
14588 1.298240 -0.6649772 0.7291395 1
14589 1.298240 -0.6649772 0.7291395 2
14590 1.298240 -0.6649772 0.7291395 2
14591 1.298240 -0.6649772 0.7291395 3
14592 1.298240 -0.6649772 0.7291395 2
14593 1.298240 -0.6649772 0.7291395 2
14594 1.298240 -0.6649772 0.7291395 1
14595 1.298240 -0.6649772 0.7291395 1
14596 1.298240 -0.6649772 0.7291395 3
14597 1.298240 -0.6649772 0.7291395 3
14598 1.298240 -0.6649772 0.7291395 1
14599 1.298240 -0.6649772 0.7291395 2
14600 1.298240 -0.6649772 0.7291395 1
14601 1.298240 -0.6649772 0.7291395 2
14602 1.298240 -0.6649772 0.7291395 1
14603 1.298240 -0.6649772 0.7291395 2
14604 1.298240 -0.6649772 0.7291395 1
14605 1.298240 -0.6649772 0.7291395 3
14606 1.298240 -0.6649772 0.7291395 2
14607 1.298240 -0.6649772 0.7291395 3
14608 1.298240 -0.6649772 0.7291395 2
14609 1.298240 -0.6649772 0.7291395 3
14610 1.298240 -0.6649772 0.7291395 1
14611 1.298240 -0.6649772 0.7291395 3
14612 1.298240 -0.6649772 0.7291395 2
14613 1.298240 -0.6649772 0.7291395 3
14614 1.298240 -0.6649772 0.7291395 1
14615 1.298240 -0.6649772 0.7291395 2
14616 1.298240 -0.6649772 0.7291395 3
14617 1.298240 -0.6649772 0.7291395 3
14618 1.298240 -0.6649772 0.7291395 2
14619 1.298240 -0.6649772 0.7291395 2
14620 1.298240 -0.6649772 0.7291395 3
14621 1.298240 -0.6649772 0.7291395 1
14622 1.298240 -0.6649772 0.7291395 2
14623 1.298240 -0.6649772 0.7291395 1
14624 1.298240 -0.6649772 0.7291395 2
14625 1.298240 -0.6649772 0.7291395 3
14626 1.298240 -0.6649772 0.7291395 2
14627 1.298240 -0.6649772 0.7291395 1
14628 1.298240 -0.6649772 0.7291395 2
14629 1.298240 -0.6649772 0.7291395 3
14630 1.298240 -0.6649772 0.7291395 2
14631 1.298240 -0.6649772 0.7291395 2
14632 1.298240 -0.6649772 0.7291395 1
14633 1.298240 -0.6649772 0.7291395 3
14634 1.298240 -0.6649772 0.7291395 3
14635 1.298240 -0.6649772 0.7291395 2
14636 1.298240 -0.6649772 0.7291395 3
14637 1.298240 -0.6649772 0.7291395 3
14638 1.298240 -0.6649772 0.7291395 3
14639 1.298240 -0.6649772 0.7291395 1
14640 1.298240 -0.6649772 0.7291395 2
14641 1.298240 -0.6649772 0.7291395 1
14642 1.298240 -0.6649772 0.7291395 3
14643 1.298240 -0.6649772 0.7291395 1
14644 1.298240 -0.6649772 0.7291395 1
14645 1.298240 -0.6649772 0.7291395 3
14646 1.298240 -0.6649772 0.7291395 3
14647 1.298240 -0.6649772 0.7291395 1
14648 1.298240 -0.6649772 0.7291395 3
14649 1.298240 -0.6649772 0.7291395 3
14650 1.298240 -0.6649772 0.7291395 3
14651 1.298240 -0.6649772 0.7291395 2
14652 1.298240 -0.6649772 0.7291395 3
14653 1.298240 -0.6649772 0.7291395 1
14654 1.298240 -0.6649772 0.7291395 3
14655 1.298240 -0.6649772 0.7291395 1
14656 1.298240 -0.6649772 0.7291395 3
14657 1.298240 -0.6649772 0.7291395 3
14658 1.298240 -0.6649772 0.7291395 2
14659 1.298240 -0.6649772 0.7291395 2
14660 1.298240 -0.6649772 0.7291395 3
14661 1.298240 -0.6649772 0.7291395 1
14662 1.298240 -0.6649772 0.7291395 3
14663 1.298240 -0.6649772 0.7291395 2
14664 1.298240 -0.6649772 0.7291395 3
14665 1.298240 -0.6649772 0.7291395 2
14666 1.298240 -0.6649772 0.7291395 2
14667 1.298240 -0.6649772 0.7291395 2
14668 1.298240 -0.6649772 0.7291395 3
14669 1.298240 -0.6649772 0.7291395 1
14670 1.298240 -0.6649772 0.7291395 1
14671 1.298240 -0.6649772 0.7291395 3
14672 1.298240 -0.6649772 0.7291395 1
14673 1.298240 -0.6649772 0.7291395 2
14674 1.298240 -0.6649772 0.7291395 1
14675 1.298240 -0.6649772 0.7291395 3
14676 1.298240 -0.6649772 0.7291395 2
14677 1.298240 -0.6649772 0.7291395 3
14678 1.298240 -0.6649772 0.7291395 3
14679 1.298240 -0.6649772 0.7291395 1
14680 1.298240 -0.6649772 0.7291395 3
14681 1.298240 -0.6649772 0.7291395 2
14682 1.298240 -0.6649772 0.7291395 3
14683 1.298240 -0.6649772 0.7291395 2
14684 1.298240 -0.6649772 0.7291395 3
14685 1.298240 -0.6649772 0.7291395 1
14686 1.298240 -0.6649772 0.7291395 1
14687 1.298240 -0.6649772 0.7291395 3
14688 1.298240 -0.6649772 0.7291395 3
14689 1.298240 -0.6649772 0.7291395 1
14690 1.298240 -0.6649772 0.7291395 2
14691 1.298240 -0.6649772 0.7291395 3
14692 1.298240 -0.6649772 0.7291395 3
14693 1.298240 -0.6649772 0.7291395 2
14694 1.298240 -0.6649772 0.7291395 1
14695 1.298240 -0.6649772 0.7291395 3
14696 1.298240 -0.6649772 0.7291395 1
14697 1.298240 -0.6649772 0.7291395 1
14698 1.298240 -0.6649772 0.7291395 3
14699 1.298240 -0.6649772 0.7291395 1
14700 1.298240 -0.6649772 0.7291395 3
14701 1.298240 -0.6649772 0.7291395 2
14702 1.298240 -0.6649772 0.7291395 1
14703 1.298240 -0.6649772 0.7291395 2
14704 1.298240 -0.6649772 0.7291395 1
14705 1.293082 -0.6577506 0.7219829 1
14706 1.293082 -0.6577506 0.7219829 3
14707 1.293082 -0.6577506 0.7219829 3
14708 1.293082 -0.6577506 0.7219829 2
14709 1.293082 -0.6577506 0.7219829 3
14710 1.293082 -0.6577506 0.7219829 2
14711 1.293082 -0.6577506 0.7219829 3
14712 1.293082 -0.6577506 0.7219829 2
14713 1.293082 -0.6577506 0.7219829 1
14714 1.293082 -0.6577506 0.7219829 1
14715 1.293082 -0.6577506 0.7219829 1
14716 1.293082 -0.6577506 0.7219829 2
14717 1.293082 -0.6577506 0.7219829 2
14718 1.293082 -0.6577506 0.7219829 3
14719 1.293082 -0.6577506 0.7219829 3
14720 1.293082 -0.6577506 0.7219829 1
14721 1.293082 -0.6577506 0.7219829 3
14722 1.293082 -0.6577506 0.7219829 2
14723 1.293082 -0.6577506 0.7219829 1
14724 1.293082 -0.6577506 0.7219829 1
14725 1.293082 -0.6577506 0.7219829 1
14726 1.293082 -0.6577506 0.7219829 1
14727 1.293082 -0.6577506 0.7219829 2
14728 1.293082 -0.6577506 0.7219829 2
14729 1.293082 -0.6577506 0.7219829 3
14730 1.293082 -0.6577506 0.7219829 2
14731 1.293082 -0.6577506 0.7219829 3
14732 1.293082 -0.6577506 0.7219829 2
14733 1.293082 -0.6577506 0.7219829 3
14734 1.293082 -0.6577506 0.7219829 1
14735 1.293082 -0.6577506 0.7219829 3
14736 1.293082 -0.6577506 0.7219829 2
14737 1.293082 -0.6577506 0.7219829 3
14738 1.293082 -0.6577506 0.7219829 2
14739 1.293082 -0.6577506 0.7219829 2
14740 1.293082 -0.6577506 0.7219829 1
14741 1.293082 -0.6577506 0.7219829 2
14742 1.293082 -0.6577506 0.7219829 2
14743 1.293082 -0.6577506 0.7219829 3
14744 1.293082 -0.6577506 0.7219829 1
14745 1.293082 -0.6577506 0.7219829 2
14746 1.293082 -0.6577506 0.7219829 1
14747 1.293082 -0.6577506 0.7219829 2
14748 1.293082 -0.6577506 0.7219829 1
14749 1.293082 -0.6577506 0.7219829 1
14750 1.293082 -0.6577506 0.7219829 3
14751 1.293082 -0.6577506 0.7219829 3
14752 1.293082 -0.6577506 0.7219829 1
14753 1.293082 -0.6577506 0.7219829 1
14754 1.293082 -0.6577506 0.7219829 3
14755 1.293082 -0.6577506 0.7219829 1
14756 1.293082 -0.6577506 0.7219829 1
14757 1.293082 -0.6577506 0.7219829 1
14758 1.293082 -0.6577506 0.7219829 1
14759 1.293082 -0.6577506 0.7219829 2
14760 1.293082 -0.6577506 0.7219829 1
14761 1.293082 -0.6577506 0.7219829 1
14762 1.293082 -0.6577506 0.7219829 1
14763 1.293082 -0.6577506 0.7219829 3
14764 1.293082 -0.6577506 0.7219829 3
14765 1.293082 -0.6577506 0.7219829 3
14766 1.293082 -0.6577506 0.7219829 3
14767 1.293082 -0.6577506 0.7219829 2
14768 1.293082 -0.6577506 0.7219829 2
14769 1.293082 -0.6577506 0.7219829 3
14770 1.293082 -0.6577506 0.7219829 3
14771 1.293082 -0.6577506 0.7219829 2
14772 1.293082 -0.6577506 0.7219829 2
14773 1.293082 -0.6577506 0.7219829 1
14774 1.293082 -0.6577506 0.7219829 1
14775 1.293082 -0.6577506 0.7219829 1
14776 1.293082 -0.6577506 0.7219829 2
14777 1.293082 -0.6577506 0.7219829 2
14778 1.293082 -0.6577506 0.7219829 1
14779 1.293082 -0.6577506 0.7219829 3
14780 1.293082 -0.6577506 0.7219829 2
14781 1.293082 -0.6577506 0.7219829 3
14782 1.293082 -0.6577506 0.7219829 3
14783 1.293082 -0.6577506 0.7219829 1
14784 1.293082 -0.6577506 0.7219829 2
14785 1.293082 -0.6577506 0.7219829 3
14786 1.293082 -0.6577506 0.7219829 3
14787 1.293082 -0.6577506 0.7219829 1
14788 1.293082 -0.6577506 0.7219829 2
14789 1.293082 -0.6577506 0.7219829 2
14790 1.293082 -0.6577506 0.7219829 1
14791 1.293082 -0.6577506 0.7219829 3
14792 1.293082 -0.6577506 0.7219829 2
14793 1.293082 -0.6577506 0.7219829 2
14794 1.293082 -0.6577506 0.7219829 1
14795 1.293082 -0.6577506 0.7219829 3
14796 1.293082 -0.6577506 0.7219829 2
14797 1.293082 -0.6577506 0.7219829 3
14798 1.293082 -0.6577506 0.7219829 3
14799 1.293082 -0.6577506 0.7219829 3
14800 1.293082 -0.6577506 0.7219829 2
14801 1.293082 -0.6577506 0.7219829 1
14802 1.293082 -0.6577506 0.7219829 2
14803 1.293082 -0.6577506 0.7219829 1
14804 1.293082 -0.6577506 0.7219829 2
14805 1.293082 -0.6577506 0.7219829 2
14806 1.293082 -0.6577506 0.7219829 3
14807 1.293082 -0.6577506 0.7219829 1
14808 1.293082 -0.6577506 0.7219829 1
14809 1.293082 -0.6577506 0.7219829 3
14810 1.293082 -0.6577506 0.7219829 2
14811 1.293082 -0.6577506 0.7219829 1
14812 1.293082 -0.6577506 0.7219829 1
14813 1.293082 -0.6577506 0.7219829 2
14814 1.293082 -0.6577506 0.7219829 2
14815 1.293082 -0.6577506 0.7219829 2
14816 1.293082 -0.6577506 0.7219829 3
14817 1.293082 -0.6577506 0.7219829 3
14818 1.293082 -0.6577506 0.7219829 3
14819 1.293082 -0.6577506 0.7219829 1
14820 1.293082 -0.6577506 0.7219829 1
14821 1.293082 -0.6577506 0.7219829 2
14822 1.293082 -0.6577506 0.7219829 2
14823 1.293082 -0.6577506 0.7219829 1
14824 1.293082 -0.6577506 0.7219829 2
14825 1.293082 -0.6577506 0.7219829 3
14826 1.293082 -0.6577506 0.7219829 3
14827 1.293082 -0.6577506 0.7219829 2
14828 1.293082 -0.6577506 0.7219829 2
14829 1.293082 -0.6577506 0.7219829 3
14830 1.293082 -0.6577506 0.7219829 1
14831 1.293082 -0.6577506 0.7219829 2
14832 1.293082 -0.6577506 0.7219829 3
14833 1.293082 -0.6577506 0.7219829 3
14834 1.293082 -0.6577506 0.7219829 3
14835 1.293082 -0.6577506 0.7219829 2
14836 1.293082 -0.6577506 0.7219829 3
14837 1.293082 -0.6577506 0.7219829 3
14838 1.293082 -0.6577506 0.7219829 2
14839 1.293082 -0.6577506 0.7219829 2
14840 1.293082 -0.6577506 0.7219829 2
14841 1.293082 -0.6577506 0.7219829 3
14842 1.293082 -0.6577506 0.7219829 3
14843 1.293082 -0.6577506 0.7219829 1
14844 1.293082 -0.6577506 0.7219829 1
14845 1.293082 -0.6577506 0.7219829 1
14846 1.293082 -0.6577506 0.7219829 3
14847 1.293082 -0.6577506 0.7219829 3
14848 1.293082 -0.6577506 0.7219829 3
14849 1.293082 -0.6577506 0.7219829 1
14850 1.293082 -0.6577506 0.7219829 3
14851 1.293082 -0.6577506 0.7219829 3
14852 1.293082 -0.6577506 0.7219829 2
14853 1.293082 -0.6577506 0.7219829 3
14854 1.293082 -0.6577506 0.7219829 2
14855 1.293082 -0.6577506 0.7219829 2
14856 1.293082 -0.6577506 0.7219829 2
14857 1.293082 -0.6577506 0.7219829 1
14858 1.293082 -0.6577506 0.7219829 1
14859 1.293082 -0.6577506 0.7219829 2
14860 1.293082 -0.6577506 0.7219829 2
14861 1.293082 -0.6577506 0.7219829 3
14862 1.293082 -0.6577506 0.7219829 3
14863 1.293082 -0.6577506 0.7219829 2
14864 1.293082 -0.6577506 0.7219829 1
14865 1.293082 -0.6577506 0.7219829 3
14866 1.293082 -0.6577506 0.7219829 2
14867 1.293082 -0.6577506 0.7219829 1
14868 1.293082 -0.6577506 0.7219829 1
14869 1.293082 -0.6577506 0.7219829 3
14870 1.293082 -0.6577506 0.7219829 3
14871 1.293082 -0.6577506 0.7219829 1
14872 1.293082 -0.6577506 0.7219829 2
14873 1.293082 -0.6577506 0.7219829 3
14874 1.293082 -0.6577506 0.7219829 1
14875 1.293082 -0.6577506 0.7219829 3
14876 1.293082 -0.6577506 0.7219829 1
14877 1.293082 -0.6577506 0.7219829 1
14878 1.293082 -0.6577506 0.7219829 2
14879 1.293082 -0.6577506 0.7219829 1
14880 1.293082 -0.6577506 0.7219829 3
14881 1.293082 -0.6577506 0.7219829 2
14882 1.293082 -0.6577506 0.7219829 3
14883 1.293082 -0.6577506 0.7219829 3
14884 1.293082 -0.6577506 0.7219829 1
14885 1.293082 -0.6577506 0.7219829 2
14886 1.293082 -0.6577506 0.7219829 2
14887 1.293082 -0.6577506 0.7219829 3
14888 1.293082 -0.6577506 0.7219829 2
14889 1.293082 -0.6577506 0.7219829 1
14890 1.293082 -0.6577506 0.7219829 1
14891 1.293082 -0.6577506 0.7219829 3
14892 1.293082 -0.6577506 0.7219829 3
14893 1.293082 -0.6577506 0.7219829 3
14894 1.293082 -0.6577506 0.7219829 1
14895 1.293082 -0.6577506 0.7219829 3
14896 1.293082 -0.6577506 0.7219829 1
14897 1.293082 -0.6577506 0.7219829 1
14898 1.293082 -0.6577506 0.7219829 3
14899 1.293082 -0.6577506 0.7219829 2
14900 1.293082 -0.6577506 0.7219829 3
14901 1.293082 -0.6577506 0.7219829 2
14902 1.293082 -0.6577506 0.7219829 3
14903 1.293082 -0.6577506 0.7219829 3
14904 1.293082 -0.6577506 0.7219829 3
14905 1.293082 -0.6577506 0.7219829 2
14906 1.293082 -0.6577506 0.7219829 1
14907 1.293082 -0.6577506 0.7219829 1
14908 1.293082 -0.6577506 0.7219829 3
14909 1.293082 -0.6577506 0.7219829 1
14910 1.293082 -0.6577506 0.7219829 2
14911 1.293082 -0.6577506 0.7219829 3
14912 1.293082 -0.6577506 0.7219829 3
14913 1.293082 -0.6577506 0.7219829 1
14914 1.293082 -0.6577506 0.7219829 3
14915 1.293082 -0.6577506 0.7219829 3
14916 1.293082 -0.6577506 0.7219829 3
14917 1.293082 -0.6577506 0.7219829 3
14918 1.293082 -0.6577506 0.7219829 3
14919 1.293082 -0.6577506 0.7219829 2
14920 1.293082 -0.6577506 0.7219829 3
14921 1.293082 -0.6577506 0.7219829 2
14922 1.293082 -0.6577506 0.7219829 2
14923 1.293082 -0.6577506 0.7219829 2
14924 1.293082 -0.6577506 0.7219829 2
14925 1.293082 -0.6577506 0.7219829 1
14926 1.293082 -0.6577506 0.7219829 3
14927 1.293082 -0.6577506 0.7219829 3
14928 1.293082 -0.6577506 0.7219829 2
14929 1.293082 -0.6577506 0.7219829 1
14930 1.293082 -0.6577506 0.7219829 2
14931 1.293082 -0.6577506 0.7219829 3
14932 1.293082 -0.6577506 0.7219829 1
14933 1.293082 -0.6577506 0.7219829 3
14934 1.293082 -0.6577506 0.7219829 3
14935 1.293082 -0.6577506 0.7219829 1
14936 1.293082 -0.6577506 0.7219829 2
14937 1.293082 -0.6577506 0.7219829 1
14938 1.293082 -0.6577506 0.7219829 1
14939 1.293082 -0.6577506 0.7219829 1
14940 1.293082 -0.6577506 0.7219829 2
14941 1.293082 -0.6577506 0.7219829 2
14942 1.293082 -0.6577506 0.7219829 1
14943 1.293082 -0.6577506 0.7219829 1
14944 1.293082 -0.6577506 0.7219829 2
14945 1.293082 -0.6577506 0.7219829 1
14946 1.293082 -0.6577506 0.7219829 3
14947 1.293082 -0.6577506 0.7219829 2
14948 1.293082 -0.6577506 0.7219829 1
14949 1.293082 -0.6577506 0.7219829 1
14950 1.293082 -0.6577506 0.7219829 3
14951 1.293082 -0.6577506 0.7219829 2
14952 1.293082 -0.6577506 0.7219829 3
14953 1.293082 -0.6577506 0.7219829 2
14954 1.293082 -0.6577506 0.7219829 3
14955 1.293082 -0.6577506 0.7219829 2
14956 1.293082 -0.6577506 0.7219829 2
14957 1.293082 -0.6577506 0.7219829 2
14958 1.293082 -0.6577506 0.7219829 2
14959 1.293082 -0.6577506 0.7219829 3
14960 1.293082 -0.6577506 0.7219829 1
14961 1.293082 -0.6577506 0.7219829 2
14962 1.293082 -0.6577506 0.7219829 2
14963 1.293082 -0.6577506 0.7219829 1
14964 1.293082 -0.6577506 0.7219829 2
14965 1.293082 -0.6577506 0.7219829 2
14966 1.293082 -0.6577506 0.7219829 1
14967 1.293082 -0.6577506 0.7219829 1
14968 1.293082 -0.6577506 0.7219829 2
14969 1.293082 -0.6577506 0.7219829 2
14970 1.293082 -0.6577506 0.7219829 3
14971 1.293082 -0.6577506 0.7219829 2
14972 1.293082 -0.6577506 0.7219829 1
14973 1.293082 -0.6577506 0.7219829 3
14974 1.293082 -0.6577506 0.7219829 1
14975 1.293082 -0.6577506 0.7219829 2
14976 1.293082 -0.6577506 0.7219829 3
14977 1.293082 -0.6577506 0.7219829 2
14978 1.293082 -0.6577506 0.7219829 1
14979 1.293082 -0.6577506 0.7219829 3
14980 1.293082 -0.6577506 0.7219829 2
14981 1.293082 -0.6577506 0.7219829 1
14982 1.293082 -0.6577506 0.7219829 1
14983 1.293082 -0.6577506 0.7219829 2
14984 1.293082 -0.6577506 0.7219829 1
14985 1.293082 -0.6577506 0.7219829 1
14986 1.293082 -0.6577506 0.7219829 1
14987 1.293082 -0.6577506 0.7219829 3
14988 1.293082 -0.6577506 0.7219829 1
14989 1.293082 -0.6577506 0.7219829 3
14990 1.293082 -0.6577506 0.7219829 2
14991 1.293082 -0.6577506 0.7219829 2
14992 1.293082 -0.6577506 0.7219829 2
14993 1.293082 -0.6577506 0.7219829 3
14994 1.293082 -0.6577506 0.7219829 3
14995 1.293082 -0.6577506 0.7219829 2
14996 1.293082 -0.6577506 0.7219829 1
14997 1.293082 -0.6577506 0.7219829 1
14998 1.293082 -0.6577506 0.7219829 3
14999 1.293082 -0.6577506 0.7219829 3
15000 1.293082 -0.6577506 0.7219829 1
15001 1.293082 -0.6577506 0.7219829 1
15002 1.293082 -0.6577506 0.7219829 2
15003 1.293082 -0.6577506 0.7219829 3
15004 1.293082 -0.6577506 0.7219829 3
15005 1.293082 -0.6577506 0.7219829 1
15006 1.293082 -0.6577506 0.7219829 2
15007 1.293082 -0.6577506 0.7219829 1
15008 1.293082 -0.6577506 0.7219829 3
15009 1.293082 -0.6577506 0.7219829 3
15010 1.293082 -0.6577506 0.7219829 3
15011 1.293082 -0.6577506 0.7219829 2
15012 1.293082 -0.6577506 0.7219829 3
15013 1.293082 -0.6577506 0.7219829 1
15014 1.293082 -0.6577506 0.7219829 1
15015 1.293082 -0.6577506 0.7219829 1
15016 1.293082 -0.6577506 0.7219829 3
15017 1.293082 -0.6577506 0.7219829 2
15018 1.293082 -0.6577506 0.7219829 3
15019 1.293082 -0.6577506 0.7219829 2
15020 1.293082 -0.6577506 0.7219829 3
15021 1.293082 -0.6577506 0.7219829 3
15022 1.293082 -0.6577506 0.7219829 2
15023 1.293082 -0.6577506 0.7219829 3
15024 1.293082 -0.6577506 0.7219829 3
15025 1.293082 -0.6577506 0.7219829 2
15026 1.293082 -0.6577506 0.7219829 2
15027 1.293082 -0.6577506 0.7219829 2
15028 1.293082 -0.6577506 0.7219829 1
15029 1.293082 -0.6577506 0.7219829 3
15030 1.293082 -0.6577506 0.7219829 3
15031 1.293082 -0.6577506 0.7219829 1
15032 1.293082 -0.6577506 0.7219829 1
15033 1.293082 -0.6577506 0.7219829 3
15034 1.293082 -0.6577506 0.7219829 3
15035 1.293082 -0.6577506 0.7219829 2
15036 1.293082 -0.6577506 0.7219829 1
15037 1.293082 -0.6577506 0.7219829 1
15038 1.293082 -0.6577506 0.7219829 3
15039 1.293082 -0.6577506 0.7219829 1
15040 1.293082 -0.6577506 0.7219829 1
15041 1.293082 -0.6577506 0.7219829 1
15042 1.293082 -0.6577506 0.7219829 2
15043 1.293082 -0.6577506 0.7219829 2
15044 1.293082 -0.6577506 0.7219829 3
15045 1.293082 -0.6577506 0.7219829 1
15046 1.293082 -0.6577506 0.7219829 1
15047 1.293082 -0.6577506 0.7219829 3
15048 1.293082 -0.6577506 0.7219829 1
15049 1.293082 -0.6577506 0.7219829 1
15050 1.293082 -0.6577506 0.7219829 3
15051 1.293082 -0.6577506 0.7219829 3
15052 1.293082 -0.6577506 0.7219829 3
15053 1.293082 -0.6577506 0.7219829 1
15054 1.293082 -0.6577506 0.7219829 2
15055 1.293082 -0.6577506 0.7219829 3
15056 1.293082 -0.6577506 0.7219829 2
15057 1.293082 -0.6577506 0.7219829 1
15058 1.293082 -0.6577506 0.7219829 1
15059 1.293082 -0.6577506 0.7219829 1
15060 1.293082 -0.6577506 0.7219829 1
15061 1.293082 -0.6577506 0.7219829 3
15062 1.293082 -0.6577506 0.7219829 3
15063 1.293082 -0.6577506 0.7219829 3
15064 1.293082 -0.6577506 0.7219829 1
15065 1.293082 -0.6577506 0.7219829 2
15066 1.293082 -0.6577506 0.7219829 2
15067 1.293082 -0.6577506 0.7219829 1
15068 1.293082 -0.6577506 0.7219829 3
15069 1.293082 -0.6577506 0.7219829 2
15070 1.293082 -0.6577506 0.7219829 1
15071 1.293082 -0.6577506 0.7219829 2
15072 1.293082 -0.6577506 0.7219829 2
15073 1.293082 -0.6577506 0.7219829 3
15074 1.293082 -0.6577506 0.7219829 1
15075 1.293082 -0.6577506 0.7219829 3
15076 1.293082 -0.6577506 0.7219829 2
15077 1.293082 -0.6577506 0.7219829 3
15078 1.293082 -0.6577506 0.7219829 2
15079 1.293082 -0.6577506 0.7219829 1
15080 1.293082 -0.6577506 0.7219829 3
15081 1.293082 -0.6577506 0.7219829 3
15082 1.293082 -0.6577506 0.7219829 3
15083 1.293082 -0.6577506 0.7219829 1
15084 1.293082 -0.6577506 0.7219829 2
15085 1.293082 -0.6577506 0.7219829 2
15086 1.293082 -0.6577506 0.7219829 2
15087 1.293082 -0.6577506 0.7219829 2
15088 1.293082 -0.6577506 0.7219829 2
15089 1.293082 -0.6577506 0.7219829 2
15090 1.293082 -0.6577506 0.7219829 3
15091 1.293082 -0.6577506 0.7219829 1
15092 1.293082 -0.6577506 0.7219829 2
15093 1.293082 -0.6577506 0.7219829 2
15094 1.293082 -0.6577506 0.7219829 2
15095 1.293082 -0.6577506 0.7219829 3
15096 1.293082 -0.6577506 0.7219829 2
15097 1.293082 -0.6577506 0.7219829 1
15098 1.293082 -0.6577506 0.7219829 3
15099 1.293082 -0.6577506 0.7219829 2
15100 1.293082 -0.6577506 0.7219829 1
15101 1.293082 -0.6577506 0.7219829 3
15102 1.293082 -0.6577506 0.7219829 2
15103 1.293082 -0.6577506 0.7219829 3
15104 1.293082 -0.6577506 0.7219829 2
15105 1.293082 -0.6577506 0.7219829 3
15106 1.293082 -0.6577506 0.7219829 3
15107 1.293082 -0.6577506 0.7219829 1
15108 1.293082 -0.6577506 0.7219829 2
15109 1.293082 -0.6577506 0.7219829 2
15110 1.293082 -0.6577506 0.7219829 2
15111 1.293082 -0.6577506 0.7219829 2
15112 1.293082 -0.6577506 0.7219829 2
15113 1.293082 -0.6577506 0.7219829 3
15114 1.293082 -0.6577506 0.7219829 3
15115 1.293082 -0.6577506 0.7219829 3
15116 1.293082 -0.6577506 0.7219829 1
15117 1.293082 -0.6577506 0.7219829 2
15118 1.293082 -0.6577506 0.7219829 3
15119 1.293082 -0.6577506 0.7219829 1
15120 1.293082 -0.6577506 0.7219829 1
15121 1.293082 -0.6577506 0.7219829 1
15122 1.293082 -0.6577506 0.7219829 1
15123 1.293082 -0.6577506 0.7219829 2
15124 1.293082 -0.6577506 0.7219829 1
15125 1.293082 -0.6577506 0.7219829 2
15126 1.293082 -0.6577506 0.7219829 1
15127 1.293082 -0.6577506 0.7219829 1
15128 1.293082 -0.6577506 0.7219829 1
15129 1.293082 -0.6577506 0.7219829 2
15130 1.293082 -0.6577506 0.7219829 3
15131 1.293082 -0.6577506 0.7219829 2
15132 1.293082 -0.6577506 0.7219829 2
15133 1.293082 -0.6577506 0.7219829 3
15134 1.293082 -0.6577506 0.7219829 3
15135 1.293082 -0.6577506 0.7219829 2
15136 1.293082 -0.6577506 0.7219829 1
15137 1.293082 -0.6577506 0.7219829 3
15138 1.293082 -0.6577506 0.7219829 2
15139 1.293082 -0.6577506 0.7219829 2
15140 1.293082 -0.6577506 0.7219829 3
15141 1.293082 -0.6577506 0.7219829 3
15142 1.293082 -0.6577506 0.7219829 1
15143 1.293082 -0.6577506 0.7219829 1
15144 1.293082 -0.6577506 0.7219829 3
15145 1.293082 -0.6577506 0.7219829 2
15146 1.293082 -0.6577506 0.7219829 1
15147 1.293082 -0.6577506 0.7219829 3
15148 1.293082 -0.6577506 0.7219829 2
15149 1.293082 -0.6577506 0.7219829 2
15150 1.293082 -0.6577506 0.7219829 2
15151 1.293082 -0.6577506 0.7219829 3
15152 1.293082 -0.6577506 0.7219829 1
15153 1.293082 -0.6577506 0.7219829 1
15154 1.293082 -0.6577506 0.7219829 1
15155 1.293082 -0.6577506 0.7219829 1
15156 1.293082 -0.6577506 0.7219829 1
15157 1.293082 -0.6577506 0.7219829 2
15158 1.293082 -0.6577506 0.7219829 2
15159 1.293082 -0.6577506 0.7219829 3
15160 1.293082 -0.6577506 0.7219829 2
15161 1.293082 -0.6577506 0.7219829 3
15162 1.293082 -0.6577506 0.7219829 1
15163 1.293082 -0.6577506 0.7219829 3
15164 1.293082 -0.6577506 0.7219829 2
15165 1.293082 -0.6577506 0.7219829 2
15166 1.293082 -0.6577506 0.7219829 1
15167 1.293082 -0.6577506 0.7219829 1
15168 1.293082 -0.6577506 0.7219829 1
15169 1.293082 -0.6577506 0.7219829 1
15170 1.293082 -0.6577506 0.7219829 2
15171 1.293082 -0.6577506 0.7219829 3
15172 1.293082 -0.6577506 0.7219829 2
15173 1.293082 -0.6577506 0.7219829 2
15174 1.293082 -0.6577506 0.7219829 2
15175 1.293082 -0.6577506 0.7219829 2
15176 1.293082 -0.6577506 0.7219829 3
15177 1.293082 -0.6577506 0.7219829 3
15178 1.293082 -0.6577506 0.7219829 3
15179 1.293082 -0.6577506 0.7219829 3
15180 1.293082 -0.6577506 0.7219829 2
15181 1.293082 -0.6577506 0.7219829 3
15182 1.293082 -0.6577506 0.7219829 1
15183 1.293082 -0.6577506 0.7219829 2
15184 1.293082 -0.6577506 0.7219829 2
15185 1.293082 -0.6577506 0.7219829 3
15186 1.293082 -0.6577506 0.7219829 3
15187 1.293082 -0.6577506 0.7219829 1
15188 1.293082 -0.6577506 0.7219829 2
15189 1.293082 -0.6577506 0.7219829 1
15190 1.293082 -0.6577506 0.7219829 3
15191 1.293082 -0.6577506 0.7219829 3
15192 1.293082 -0.6577506 0.7219829 2
15193 1.293082 -0.6577506 0.7219829 3
15194 1.293082 -0.6577506 0.7219829 1
15195 1.293082 -0.6577506 0.7219829 1
15196 1.293082 -0.6577506 0.7219829 1
15197 1.293082 -0.6577506 0.7219829 1
15198 1.293082 -0.6577506 0.7219829 3
15199 1.293082 -0.6577506 0.7219829 1
15200 1.293082 -0.6577506 0.7219829 2
15201 1.293082 -0.6577506 0.7219829 1
15202 1.293082 -0.6577506 0.7219829 3
15203 1.293082 -0.6577506 0.7219829 3
15204 1.293082 -0.6577506 0.7219829 2
15205 1.293082 -0.6577506 0.7219829 2
15206 1.293082 -0.6577506 0.7219829 3
15207 1.293082 -0.6577506 0.7219829 1
15208 1.293082 -0.6577506 0.7219829 2
15209 1.293082 -0.6577506 0.7219829 3
15210 1.293082 -0.6577506 0.7219829 1
15211 1.293082 -0.6577506 0.7219829 2
15212 1.293082 -0.6577506 0.7219829 3
15213 1.293082 -0.6577506 0.7219829 2
15214 1.293082 -0.6577506 0.7219829 3
15215 1.293082 -0.6577506 0.7219829 2
15216 1.293082 -0.6577506 0.7219829 3
15217 1.293082 -0.6577506 0.7219829 2
15218 1.293082 -0.6577506 0.7219829 1
15219 1.293082 -0.6577506 0.7219829 3
15220 1.293082 -0.6577506 0.7219829 2
15221 1.293082 -0.6577506 0.7219829 2
15222 1.293082 -0.6577506 0.7219829 3
15223 1.293082 -0.6577506 0.7219829 3
15224 1.293082 -0.6577506 0.7219829 3
15225 1.293082 -0.6577506 0.7219829 1
15226 1.293082 -0.6577506 0.7219829 1
15227 1.293082 -0.6577506 0.7219829 1
15228 1.293082 -0.6577506 0.7219829 1
15229 1.293082 -0.6577506 0.7219829 2
15230 1.293082 -0.6577506 0.7219829 1
15231 1.293082 -0.6577506 0.7219829 2
15232 1.293082 -0.6577506 0.7219829 1
15233 1.293082 -0.6577506 0.7219829 3
15234 1.293082 -0.6577506 0.7219829 3
15235 1.293082 -0.6577506 0.7219829 2
15236 1.293082 -0.6577506 0.7219829 2
15237 1.293082 -0.6577506 0.7219829 2
15238 1.293082 -0.6577506 0.7219829 2
15239 1.293082 -0.6577506 0.7219829 1
15240 1.293082 -0.6577506 0.7219829 3
15241 1.293082 -0.6577506 0.7219829 3
15242 1.293082 -0.6577506 0.7219829 3
15243 1.293082 -0.6577506 0.7219829 2
15244 1.293082 -0.6577506 0.7219829 1
15245 1.293082 -0.6577506 0.7219829 3
15246 1.293082 -0.6577506 0.7219829 3
15247 1.293082 -0.6577506 0.7219829 1
15248 1.293082 -0.6577506 0.7219829 1
15249 1.293082 -0.6577506 0.7219829 2
15250 1.293082 -0.6577506 0.7219829 3
15251 1.293082 -0.6577506 0.7219829 2
15252 1.293082 -0.6577506 0.7219829 1
15253 1.293082 -0.6577506 0.7219829 1
15254 1.293082 -0.6577506 0.7219829 3
15255 1.293082 -0.6577506 0.7219829 1
15256 1.293082 -0.6577506 0.7219829 3
15257 1.293082 -0.6577506 0.7219829 3
15258 1.293082 -0.6577506 0.7219829 1
15259 1.293082 -0.6577506 0.7219829 1
15260 1.293082 -0.6577506 0.7219829 3
15261 1.293082 -0.6577506 0.7219829 1
15262 1.293082 -0.6577506 0.7219829 2
15263 1.293082 -0.6577506 0.7219829 1
15264 1.293082 -0.6577506 0.7219829 3
15265 1.293082 -0.6577506 0.7219829 1
15266 1.293082 -0.6577506 0.7219829 3
15267 1.293082 -0.6577506 0.7219829 3
15268 1.293082 -0.6577506 0.7219829 3
15269 1.293082 -0.6577506 0.7219829 1
15270 1.293082 -0.6577506 0.7219829 3
15271 1.293082 -0.6577506 0.7219829 3
15272 1.293082 -0.6577506 0.7219829 1
15273 1.293082 -0.6577506 0.7219829 2
15274 1.293082 -0.6577506 0.7219829 1
15275 1.293082 -0.6577506 0.7219829 2
15276 1.293082 -0.6577506 0.7219829 3
15277 1.293082 -0.6577506 0.7219829 2
15278 1.293082 -0.6577506 0.7219829 3
15279 1.293082 -0.6577506 0.7219829 2
15280 1.293082 -0.6577506 0.7219829 3
15281 1.293082 -0.6577506 0.7219829 3
15282 1.293082 -0.6577506 0.7219829 2
15283 1.293082 -0.6577506 0.7219829 1
15284 1.293082 -0.6577506 0.7219829 3
15285 1.293082 -0.6577506 0.7219829 3
15286 1.293082 -0.6577506 0.7219829 3
15287 1.293082 -0.6577506 0.7219829 3
15288 1.293082 -0.6577506 0.7219829 2
15289 1.293082 -0.6577506 0.7219829 3
15290 1.293082 -0.6577506 0.7219829 3
15291 1.293082 -0.6577506 0.7219829 3
15292 1.293082 -0.6577506 0.7219829 2
15293 1.293082 -0.6577506 0.7219829 1
15294 1.293082 -0.6577506 0.7219829 3
15295 1.293082 -0.6577506 0.7219829 2
15296 1.293082 -0.6577506 0.7219829 3
15297 1.293082 -0.6577506 0.7219829 1
15298 1.293082 -0.6577506 0.7219829 2
15299 1.293082 -0.6577506 0.7219829 1
15300 1.293082 -0.6577506 0.7219829 1
15301 1.293082 -0.6577506 0.7219829 3
15302 1.293082 -0.6577506 0.7219829 1
15303 1.293082 -0.6577506 0.7219829 3
15304 1.293082 -0.6577506 0.7219829 2
15305 1.293082 -0.6577506 0.7219829 1
15306 1.293082 -0.6577506 0.7219829 2
15307 1.293082 -0.6577506 0.7219829 1
15308 1.293082 -0.6577506 0.7219829 2
15309 1.293082 -0.6577506 0.7219829 2
15310 1.293082 -0.6577506 0.7219829 3
15311 1.293082 -0.6577506 0.7219829 3
15312 1.293082 -0.6577506 0.7219829 3
15313 1.293082 -0.6577506 0.7219829 2
15314 1.293082 -0.6577506 0.7219829 2
15315 1.293082 -0.6577506 0.7219829 3
15316 1.293082 -0.6577506 0.7219829 1
15317 1.293082 -0.6577506 0.7219829 2
15318 1.293082 -0.6577506 0.7219829 2
15319 1.293082 -0.6577506 0.7219829 1
15320 1.293082 -0.6577506 0.7219829 2
15321 1.293082 -0.6577506 0.7219829 3
15322 1.293082 -0.6577506 0.7219829 1
15323 1.293082 -0.6577506 0.7219829 2
15324 1.293082 -0.6577506 0.7219829 1
15325 1.293082 -0.6577506 0.7219829 1
15326 1.293082 -0.6577506 0.7219829 1
15327 1.293082 -0.6577506 0.7219829 2
15328 1.293082 -0.6577506 0.7219829 2
15329 1.293082 -0.6577506 0.7219829 3
15330 1.293082 -0.6577506 0.7219829 1
15331 1.293082 -0.6577506 0.7219829 2
15332 1.293082 -0.6577506 0.7219829 2
15333 1.293082 -0.6577506 0.7219829 1
15334 1.293082 -0.6577506 0.7219829 1
15335 1.293082 -0.6577506 0.7219829 3
15336 1.293082 -0.6577506 0.7219829 2
15337 1.293082 -0.6577506 0.7219829 3
15338 1.293082 -0.6577506 0.7219829 3
15339 1.293082 -0.6577506 0.7219829 1
15340 1.293082 -0.6577506 0.7219829 3
15341 1.293082 -0.6577506 0.7219829 2
15342 1.293082 -0.6577506 0.7219829 1
15343 1.293082 -0.6577506 0.7219829 2
15344 1.293082 -0.6577506 0.7219829 3
15345 1.293082 -0.6577506 0.7219829 3
15346 1.293082 -0.6577506 0.7219829 3
15347 1.293082 -0.6577506 0.7219829 3
15348 1.293082 -0.6577506 0.7219829 3
15349 1.293082 -0.6577506 0.7219829 1
15350 1.293082 -0.6577506 0.7219829 2
15351 1.293082 -0.6577506 0.7219829 3
15352 1.293082 -0.6577506 0.7219829 2
15353 1.293082 -0.6577506 0.7219829 2
15354 1.293082 -0.6577506 0.7219829 1
15355 1.293082 -0.6577506 0.7219829 1
15356 1.293082 -0.6577506 0.7219829 1
15357 1.293082 -0.6577506 0.7219829 3
15358 1.293082 -0.6577506 0.7219829 2
15359 1.293082 -0.6577506 0.7219829 1
15360 1.293082 -0.6577506 0.7219829 3
15361 1.293082 -0.6577506 0.7219829 1
15362 1.293082 -0.6577506 0.7219829 1
15363 1.293082 -0.6577506 0.7219829 3
15364 1.293082 -0.6577506 0.7219829 3
15365 1.293082 -0.6577506 0.7219829 1
15366 1.293082 -0.6577506 0.7219829 3
15367 1.293082 -0.6577506 0.7219829 1
15368 1.293082 -0.6577506 0.7219829 2
15369 1.293082 -0.6577506 0.7219829 1
15370 1.293082 -0.6577506 0.7219829 1
15371 1.293082 -0.6577506 0.7219829 1
15372 1.293082 -0.6577506 0.7219829 2
15373 1.293082 -0.6577506 0.7219829 1
15374 1.293082 -0.6577506 0.7219829 1
15375 1.293082 -0.6577506 0.7219829 1
15376 1.293082 -0.6577506 0.7219829 1
15377 1.293082 -0.6577506 0.7219829 2
15378 1.293082 -0.6577506 0.7219829 3
15379 1.293082 -0.6577506 0.7219829 2
15380 1.293082 -0.6577506 0.7219829 1
15381 1.293082 -0.6577506 0.7219829 3
15382 1.293082 -0.6577506 0.7219829 2
15383 1.293082 -0.6577506 0.7219829 1
15384 1.293082 -0.6577506 0.7219829 1
15385 1.293082 -0.6577506 0.7219829 1
15386 1.293082 -0.6577506 0.7219829 1
15387 1.293082 -0.6577506 0.7219829 1
15388 1.293082 -0.6577506 0.7219829 3
15389 1.293082 -0.6577506 0.7219829 3
15390 1.293082 -0.6577506 0.7219829 1
15391 1.293082 -0.6577506 0.7219829 3
15392 1.293082 -0.6577506 0.7219829 1
15393 1.293082 -0.6577506 0.7219829 1
15394 1.293082 -0.6577506 0.7219829 2
15395 1.293082 -0.6577506 0.7219829 3
15396 1.293082 -0.6577506 0.7219829 1
15397 1.293082 -0.6577506 0.7219829 3
15398 1.293082 -0.6577506 0.7219829 2
15399 1.293082 -0.6577506 0.7219829 2
15400 1.293082 -0.6577506 0.7219829 2
15401 1.293082 -0.6577506 0.7219829 1
15402 1.293082 -0.6577506 0.7219829 3
15403 1.293082 -0.6577506 0.7219829 1
15404 1.293082 -0.6577506 0.7219829 3
15405 1.293082 -0.6577506 0.7219829 2
15406 1.293082 -0.6577506 0.7219829 3
15407 1.293082 -0.6577506 0.7219829 1
15408 1.293082 -0.6577506 0.7219829 1
15409 1.293082 -0.6577506 0.7219829 1
15410 1.293082 -0.6577506 0.7219829 2
15411 1.293082 -0.6577506 0.7219829 2
15412 1.293082 -0.6577506 0.7219829 1
15413 1.293082 -0.6577506 0.7219829 2
15414 1.293082 -0.6577506 0.7219829 1
15415 1.293082 -0.6577506 0.7219829 1
15416 1.293082 -0.6577506 0.7219829 1
15417 1.293082 -0.6577506 0.7219829 1
15418 1.293082 -0.6577506 0.7219829 1
15419 1.293082 -0.6577506 0.7219829 1
15420 1.293082 -0.6577506 0.7219829 1
15421 1.293082 -0.6577506 0.7219829 1
15422 1.293082 -0.6577506 0.7219829 3
15423 1.293082 -0.6577506 0.7219829 3
15424 1.293082 -0.6577506 0.7219829 1
15425 1.293082 -0.6577506 0.7219829 3
15426 1.293082 -0.6577506 0.7219829 3
15427 1.293082 -0.6577506 0.7219829 1
15428 1.293082 -0.6577506 0.7219829 2
15429 1.293082 -0.6577506 0.7219829 1
15430 1.293082 -0.6577506 0.7219829 2
15431 1.293082 -0.6577506 0.7219829 1
15432 1.293082 -0.6577506 0.7219829 2
15433 1.293082 -0.6577506 0.7219829 2
15434 1.293082 -0.6577506 0.7219829 3
15435 1.293082 -0.6577506 0.7219829 1
15436 1.293082 -0.6577506 0.7219829 2
15437 1.293082 -0.6577506 0.7219829 1
15438 1.293082 -0.6577506 0.7219829 1
15439 1.293082 -0.6577506 0.7219829 1
15440 1.293082 -0.6577506 0.7219829 2
15441 1.293082 -0.6577506 0.7219829 2
15442 1.293082 -0.6577506 0.7219829 1
15443 1.293082 -0.6577506 0.7219829 1
15444 1.293082 -0.6577506 0.7219829 2
15445 1.293082 -0.6577506 0.7219829 1
15446 1.293082 -0.6577506 0.7219829 2
15447 1.293082 -0.6577506 0.7219829 1
15448 1.293082 -0.6577506 0.7219829 1
15449 1.293082 -0.6577506 0.7219829 2
15450 1.293082 -0.6577506 0.7219829 1
15451 1.293082 -0.6577506 0.7219829 1
15452 1.293082 -0.6577506 0.7219829 3
15453 1.293082 -0.6577506 0.7219829 2
15454 1.293082 -0.6577506 0.7219829 1
15455 1.293082 -0.6577506 0.7219829 1
15456 1.293082 -0.6577506 0.7219829 3
15457 1.293082 -0.6577506 0.7219829 3
15458 1.293082 -0.6577506 0.7219829 1
15459 1.293082 -0.6577506 0.7219829 3
15460 1.293082 -0.6577506 0.7219829 3
15461 1.293082 -0.6577506 0.7219829 1
15462 1.293082 -0.6577506 0.7219829 2
15463 1.293082 -0.6577506 0.7219829 3
15464 1.293082 -0.6577506 0.7219829 3
15465 1.293082 -0.6577506 0.7219829 2
15466 1.293082 -0.6577506 0.7219829 3
15467 1.293082 -0.6577506 0.7219829 1
15468 1.293082 -0.6577506 0.7219829 3
15469 1.293082 -0.6577506 0.7219829 1
15470 1.293082 -0.6577506 0.7219829 1
15471 1.293082 -0.6577506 0.7219829 3
15472 1.293082 -0.6577506 0.7219829 1
15473 1.293082 -0.6577506 0.7219829 3
15474 1.293082 -0.6577506 0.7219829 1
15475 1.293082 -0.6577506 0.7219829 3
15476 1.293082 -0.6577506 0.7219829 2
15477 1.293082 -0.6577506 0.7219829 1
15478 1.293082 -0.6577506 0.7219829 3
15479 1.293082 -0.6577506 0.7219829 1
15480 1.293082 -0.6577506 0.7219829 2
15481 1.293082 -0.6577506 0.7219829 2
15482 1.293082 -0.6577506 0.7219829 2
15483 1.293082 -0.6577506 0.7219829 3
15484 1.293082 -0.6577506 0.7219829 2
15485 1.293082 -0.6577506 0.7219829 1
15486 1.293082 -0.6577506 0.7219829 2
15487 1.293082 -0.6577506 0.7219829 2
15488 1.293082 -0.6577506 0.7219829 2
15489 1.293082 -0.6577506 0.7219829 1
15490 1.293082 -0.6577506 0.7219829 2
15491 1.293082 -0.6577506 0.7219829 3
15492 1.293082 -0.6577506 0.7219829 3
15493 1.293082 -0.6577506 0.7219829 1
15494 1.293082 -0.6577506 0.7219829 3
15495 1.293082 -0.6577506 0.7219829 3
15496 1.293082 -0.6577506 0.7219829 2
15497 1.293082 -0.6577506 0.7219829 2
15498 1.293082 -0.6577506 0.7219829 3
15499 1.293082 -0.6577506 0.7219829 3
15500 1.293082 -0.6577506 0.7219829 1
15501 1.293082 -0.6577506 0.7219829 3
15502 1.293082 -0.6577506 0.7219829 3
15503 1.293082 -0.6577506 0.7219829 1
15504 1.293082 -0.6577506 0.7219829 1
15505 1.293082 -0.6577506 0.7219829 3
15506 1.293082 -0.6577506 0.7219829 1
15507 1.293082 -0.6577506 0.7219829 1
15508 1.293082 -0.6577506 0.7219829 2
15509 1.293082 -0.6577506 0.7219829 3
15510 1.293082 -0.6577506 0.7219829 2
15511 1.293082 -0.6577506 0.7219829 2
15512 1.293082 -0.6577506 0.7219829 3
15513 1.293082 -0.6577506 0.7219829 1
15514 1.293082 -0.6577506 0.7219829 2
15515 1.293082 -0.6577506 0.7219829 3
15516 1.293082 -0.6577506 0.7219829 3
15517 1.293082 -0.6577506 0.7219829 1
15518 1.293082 -0.6577506 0.7219829 2
15519 1.293082 -0.6577506 0.7219829 3
15520 1.293082 -0.6577506 0.7219829 3
15521 1.293082 -0.6577506 0.7219829 3
15522 1.293082 -0.6577506 0.7219829 3
15523 1.293082 -0.6577506 0.7219829 1
15524 1.293082 -0.6577506 0.7219829 3
15525 1.293082 -0.6577506 0.7219829 3
15526 1.293082 -0.6577506 0.7219829 1
15527 1.293082 -0.6577506 0.7219829 1
15528 1.293082 -0.6577506 0.7219829 2
15529 1.293082 -0.6577506 0.7219829 3
15530 1.293082 -0.6577506 0.7219829 2
15531 1.293082 -0.6577506 0.7219829 1
15532 1.293082 -0.6577506 0.7219829 2
15533 1.293082 -0.6577506 0.7219829 2
15534 1.293082 -0.6577506 0.7219829 2
15535 1.293082 -0.6577506 0.7219829 1
15536 1.293082 -0.6577506 0.7219829 3
15537 1.293082 -0.6577506 0.7219829 3
15538 1.293082 -0.6577506 0.7219829 2
15539 1.293082 -0.6577506 0.7219829 1
15540 1.293082 -0.6577506 0.7219829 3
15541 1.293082 -0.6577506 0.7219829 1
15542 1.293082 -0.6577506 0.7219829 1
15543 1.293082 -0.6577506 0.7219829 1
15544 1.293082 -0.6577506 0.7219829 1
15545 1.293082 -0.6577506 0.7219829 1
15546 1.293082 -0.6577506 0.7219829 1
15547 1.293082 -0.6577506 0.7219829 3
15548 1.293082 -0.6577506 0.7219829 1
15549 1.293082 -0.6577506 0.7219829 2
15550 1.293082 -0.6577506 0.7219829 3
15551 1.293082 -0.6577506 0.7219829 1
15552 1.293082 -0.6577506 0.7219829 3
15553 1.293082 -0.6577506 0.7219829 2
15554 1.293082 -0.6577506 0.7219829 1
15555 1.293082 -0.6577506 0.7219829 3
15556 1.293082 -0.6577506 0.7219829 3
15557 1.293082 -0.6577506 0.7219829 2
15558 1.293082 -0.6577506 0.7219829 3
15559 1.293082 -0.6577506 0.7219829 3
15560 1.293082 -0.6577506 0.7219829 1
15561 1.293082 -0.6577506 0.7219829 3
15562 1.293082 -0.6577506 0.7219829 2
15563 1.293082 -0.6577506 0.7219829 2
15564 1.293082 -0.6577506 0.7219829 1
15565 1.293082 -0.6577506 0.7219829 3
15566 1.293082 -0.6577506 0.7219829 1
15567 1.293082 -0.6577506 0.7219829 2
15568 1.293082 -0.6577506 0.7219829 1
15569 1.293082 -0.6577506 0.7219829 2
15570 1.293082 -0.6577506 0.7219829 2
15571 1.293082 -0.6577506 0.7219829 3
15572 1.293082 -0.6577506 0.7219829 2
15573 1.293082 -0.6577506 0.7219829 3
15574 1.293082 -0.6577506 0.7219829 1
15575 1.293082 -0.6577506 0.7219829 1
15576 1.293082 -0.6577506 0.7219829 3
15577 1.293082 -0.6577506 0.7219829 3
15578 1.293082 -0.6577506 0.7219829 2
15579 1.293082 -0.6577506 0.7219829 3
15580 1.293082 -0.6577506 0.7219829 3
15581 1.293082 -0.6577506 0.7219829 1
15582 1.293082 -0.6577506 0.7219829 3
15583 1.293082 -0.6577506 0.7219829 1
15584 1.293082 -0.6577506 0.7219829 3
15585 1.293082 -0.6577506 0.7219829 1
15586 1.293082 -0.6577506 0.7219829 3
15587 1.293082 -0.6577506 0.7219829 2
15588 1.293082 -0.6577506 0.7219829 1
15589 1.293082 -0.6577506 0.7219829 2
15590 1.293082 -0.6577506 0.7219829 2
15591 1.293082 -0.6577506 0.7219829 3
15592 1.293082 -0.6577506 0.7219829 2
15593 1.293082 -0.6577506 0.7219829 3
15594 1.293082 -0.6577506 0.7219829 2
15595 1.293082 -0.6577506 0.7219829 3
15596 1.293082 -0.6577506 0.7219829 2
15597 1.293082 -0.6577506 0.7219829 2
15598 1.293082 -0.6577506 0.7219829 3
15599 1.293082 -0.6577506 0.7219829 2
15600 1.293082 -0.6577506 0.7219829 2
15601 1.293082 -0.6577506 0.7219829 1
15602 1.293082 -0.6577506 0.7219829 3
15603 1.293082 -0.6577506 0.7219829 1
15604 1.293082 -0.6577506 0.7219829 2
15605 1.293082 -0.6577506 0.7219829 3
15606 1.293082 -0.6577506 0.7219829 3
15607 1.293082 -0.6577506 0.7219829 3
15608 1.293082 -0.6577506 0.7219829 3
15609 1.293082 -0.6577506 0.7219829 1
15610 1.293082 -0.6577506 0.7219829 3
15611 1.293082 -0.6577506 0.7219829 1
15612 1.293082 -0.6577506 0.7219829 3
15613 1.293082 -0.6577506 0.7219829 3
15614 1.293082 -0.6577506 0.7219829 3
15615 1.293082 -0.6577506 0.7219829 1
15616 1.293082 -0.6577506 0.7219829 3
15617 1.293082 -0.6577506 0.7219829 1
15618 1.293082 -0.6577506 0.7219829 2
15619 1.293082 -0.6577506 0.7219829 2
15620 1.293082 -0.6577506 0.7219829 3
15621 1.293082 -0.6577506 0.7219829 3
15622 1.293082 -0.6577506 0.7219829 1
15623 1.293082 -0.6577506 0.7219829 1
15624 1.287696 -0.6606837 0.7243117 1
15625 1.287696 -0.6606837 0.7243117 1
15626 1.287696 -0.6606837 0.7243117 1
15627 1.287696 -0.6606837 0.7243117 2
15628 1.287696 -0.6606837 0.7243117 1
15629 1.287696 -0.6606837 0.7243117 2
15630 1.287696 -0.6606837 0.7243117 1
15631 1.287696 -0.6606837 0.7243117 2
15632 1.287696 -0.6606837 0.7243117 1
15633 1.287696 -0.6606837 0.7243117 3
15634 1.287696 -0.6606837 0.7243117 1
15635 1.287696 -0.6606837 0.7243117 1
15636 1.287696 -0.6606837 0.7243117 3
15637 1.287696 -0.6606837 0.7243117 1
15638 1.287696 -0.6606837 0.7243117 3
15639 1.287696 -0.6606837 0.7243117 2
15640 1.287696 -0.6606837 0.7243117 2
15641 1.287696 -0.6606837 0.7243117 3
15642 1.287696 -0.6606837 0.7243117 1
15643 1.287696 -0.6606837 0.7243117 1
15644 1.287696 -0.6606837 0.7243117 2
15645 1.287696 -0.6606837 0.7243117 2
15646 1.287696 -0.6606837 0.7243117 3
15647 1.287696 -0.6606837 0.7243117 3
15648 1.287696 -0.6606837 0.7243117 1
15649 1.287696 -0.6606837 0.7243117 3
15650 1.287696 -0.6606837 0.7243117 3
15651 1.287696 -0.6606837 0.7243117 2
15652 1.287696 -0.6606837 0.7243117 1
15653 1.287696 -0.6606837 0.7243117 3
15654 1.287696 -0.6606837 0.7243117 1
15655 1.287696 -0.6606837 0.7243117 1
15656 1.287696 -0.6606837 0.7243117 1
15657 1.287696 -0.6606837 0.7243117 1
15658 1.287696 -0.6606837 0.7243117 3
15659 1.287696 -0.6606837 0.7243117 2
15660 1.287696 -0.6606837 0.7243117 3
15661 1.287696 -0.6606837 0.7243117 2
15662 1.287696 -0.6606837 0.7243117 3
15663 1.287696 -0.6606837 0.7243117 1
15664 1.287696 -0.6606837 0.7243117 1
15665 1.287696 -0.6606837 0.7243117 3
15666 1.287696 -0.6606837 0.7243117 3
15667 1.287696 -0.6606837 0.7243117 1
15668 1.287696 -0.6606837 0.7243117 2
15669 1.287696 -0.6606837 0.7243117 1
15670 1.287696 -0.6606837 0.7243117 1
15671 1.287696 -0.6606837 0.7243117 1
15672 1.287696 -0.6606837 0.7243117 3
15673 1.287696 -0.6606837 0.7243117 2
15674 1.287696 -0.6606837 0.7243117 2
15675 1.287696 -0.6606837 0.7243117 2
15676 1.287696 -0.6606837 0.7243117 2
15677 1.287696 -0.6606837 0.7243117 3
15678 1.287696 -0.6606837 0.7243117 1
15679 1.287696 -0.6606837 0.7243117 2
15680 1.287696 -0.6606837 0.7243117 2
15681 1.287696 -0.6606837 0.7243117 2
15682 1.287696 -0.6606837 0.7243117 3
15683 1.287696 -0.6606837 0.7243117 2
15684 1.287696 -0.6606837 0.7243117 1
15685 1.287696 -0.6606837 0.7243117 1
15686 1.287696 -0.6606837 0.7243117 3
15687 1.287696 -0.6606837 0.7243117 1
15688 1.287696 -0.6606837 0.7243117 3
15689 1.287696 -0.6606837 0.7243117 2
15690 1.287696 -0.6606837 0.7243117 2
15691 1.287696 -0.6606837 0.7243117 2
15692 1.287696 -0.6606837 0.7243117 2
15693 1.287696 -0.6606837 0.7243117 2
15694 1.287696 -0.6606837 0.7243117 3
15695 1.287696 -0.6606837 0.7243117 3
15696 1.287696 -0.6606837 0.7243117 2
15697 1.287696 -0.6606837 0.7243117 2
15698 1.287696 -0.6606837 0.7243117 1
15699 1.287696 -0.6606837 0.7243117 2
15700 1.287696 -0.6606837 0.7243117 3
15701 1.287696 -0.6606837 0.7243117 2
15702 1.287696 -0.6606837 0.7243117 1
15703 1.287696 -0.6606837 0.7243117 2
15704 1.287696 -0.6606837 0.7243117 2
15705 1.287696 -0.6606837 0.7243117 3
15706 1.287696 -0.6606837 0.7243117 3
15707 1.287696 -0.6606837 0.7243117 2
15708 1.287696 -0.6606837 0.7243117 3
15709 1.287696 -0.6606837 0.7243117 1
15710 1.287696 -0.6606837 0.7243117 3
15711 1.287696 -0.6606837 0.7243117 1
15712 1.287696 -0.6606837 0.7243117 3
15713 1.287696 -0.6606837 0.7243117 3
15714 1.287696 -0.6606837 0.7243117 2
15715 1.287696 -0.6606837 0.7243117 3
15716 1.287696 -0.6606837 0.7243117 2
15717 1.287696 -0.6606837 0.7243117 3
15718 1.287696 -0.6606837 0.7243117 2
15719 1.287696 -0.6606837 0.7243117 2
15720 1.287696 -0.6606837 0.7243117 2
15721 1.287696 -0.6606837 0.7243117 2
15722 1.287696 -0.6606837 0.7243117 3
15723 1.287696 -0.6606837 0.7243117 3
15724 1.287696 -0.6606837 0.7243117 3
15725 1.287696 -0.6606837 0.7243117 3
15726 1.287696 -0.6606837 0.7243117 1
15727 1.287696 -0.6606837 0.7243117 2
15728 1.287696 -0.6606837 0.7243117 2
15729 1.287696 -0.6606837 0.7243117 1
15730 1.287696 -0.6606837 0.7243117 1
15731 1.287696 -0.6606837 0.7243117 1
15732 1.287696 -0.6606837 0.7243117 1
15733 1.287696 -0.6606837 0.7243117 1
15734 1.287696 -0.6606837 0.7243117 3
15735 1.287696 -0.6606837 0.7243117 3
15736 1.287696 -0.6606837 0.7243117 3
15737 1.287696 -0.6606837 0.7243117 1
15738 1.287696 -0.6606837 0.7243117 2
15739 1.287696 -0.6606837 0.7243117 2
15740 1.287696 -0.6606837 0.7243117 1
15741 1.287696 -0.6606837 0.7243117 2
15742 1.287696 -0.6606837 0.7243117 3
15743 1.287696 -0.6606837 0.7243117 1
15744 1.287696 -0.6606837 0.7243117 2
15745 1.287696 -0.6606837 0.7243117 3
15746 1.287696 -0.6606837 0.7243117 1
15747 1.287696 -0.6606837 0.7243117 1
15748 1.287696 -0.6606837 0.7243117 3
15749 1.287696 -0.6606837 0.7243117 1
15750 1.287696 -0.6606837 0.7243117 3
15751 1.287696 -0.6606837 0.7243117 2
15752 1.287696 -0.6606837 0.7243117 2
15753 1.287696 -0.6606837 0.7243117 1
15754 1.287696 -0.6606837 0.7243117 3
15755 1.287696 -0.6606837 0.7243117 3
15756 1.287696 -0.6606837 0.7243117 1
15757 1.287696 -0.6606837 0.7243117 1
15758 1.287696 -0.6606837 0.7243117 2
15759 1.287696 -0.6606837 0.7243117 3
15760 1.287696 -0.6606837 0.7243117 3
15761 1.287696 -0.6606837 0.7243117 2
15762 1.287696 -0.6606837 0.7243117 1
15763 1.287696 -0.6606837 0.7243117 1
15764 1.287696 -0.6606837 0.7243117 1
15765 1.287696 -0.6606837 0.7243117 1
15766 1.287696 -0.6606837 0.7243117 3
15767 1.287696 -0.6606837 0.7243117 3
15768 1.287696 -0.6606837 0.7243117 1
15769 1.287696 -0.6606837 0.7243117 1
15770 1.287696 -0.6606837 0.7243117 2
15771 1.287696 -0.6606837 0.7243117 1
15772 1.287696 -0.6606837 0.7243117 1
15773 1.287696 -0.6606837 0.7243117 2
15774 1.287696 -0.6606837 0.7243117 1
15775 1.287696 -0.6606837 0.7243117 1
15776 1.287696 -0.6606837 0.7243117 3
15777 1.287696 -0.6606837 0.7243117 1
15778 1.287696 -0.6606837 0.7243117 2
15779 1.287696 -0.6606837 0.7243117 3
15780 1.287696 -0.6606837 0.7243117 2
15781 1.287696 -0.6606837 0.7243117 3
15782 1.287696 -0.6606837 0.7243117 2
15783 1.287696 -0.6606837 0.7243117 1
15784 1.287696 -0.6606837 0.7243117 3
15785 1.287696 -0.6606837 0.7243117 2
15786 1.287696 -0.6606837 0.7243117 2
15787 1.287696 -0.6606837 0.7243117 2
15788 1.287696 -0.6606837 0.7243117 1
15789 1.287696 -0.6606837 0.7243117 1
15790 1.287696 -0.6606837 0.7243117 3
15791 1.287696 -0.6606837 0.7243117 3
15792 1.287696 -0.6606837 0.7243117 2
15793 1.287696 -0.6606837 0.7243117 2
15794 1.287696 -0.6606837 0.7243117 2
15795 1.287696 -0.6606837 0.7243117 3
15796 1.287696 -0.6606837 0.7243117 3
15797 1.287696 -0.6606837 0.7243117 3
15798 1.287696 -0.6606837 0.7243117 3
15799 1.287696 -0.6606837 0.7243117 3
15800 1.287696 -0.6606837 0.7243117 2
15801 1.287696 -0.6606837 0.7243117 2
15802 1.287696 -0.6606837 0.7243117 1
15803 1.287696 -0.6606837 0.7243117 1
15804 1.287696 -0.6606837 0.7243117 1
15805 1.287696 -0.6606837 0.7243117 2
15806 1.287696 -0.6606837 0.7243117 3
15807 1.287696 -0.6606837 0.7243117 3
15808 1.287696 -0.6606837 0.7243117 3
15809 1.287696 -0.6606837 0.7243117 3
15810 1.287696 -0.6606837 0.7243117 1
15811 1.287696 -0.6606837 0.7243117 1
15812 1.287696 -0.6606837 0.7243117 2
15813 1.287696 -0.6606837 0.7243117 1
15814 1.287696 -0.6606837 0.7243117 2
15815 1.287696 -0.6606837 0.7243117 3
15816 1.287696 -0.6606837 0.7243117 2
15817 1.287696 -0.6606837 0.7243117 3
15818 1.287696 -0.6606837 0.7243117 1
15819 1.287696 -0.6606837 0.7243117 2
15820 1.287696 -0.6606837 0.7243117 3
15821 1.287696 -0.6606837 0.7243117 2
15822 1.287696 -0.6606837 0.7243117 2
15823 1.287696 -0.6606837 0.7243117 3
15824 1.287696 -0.6606837 0.7243117 2
15825 1.287696 -0.6606837 0.7243117 2
15826 1.287696 -0.6606837 0.7243117 3
15827 1.287696 -0.6606837 0.7243117 1
15828 1.287696 -0.6606837 0.7243117 3
15829 1.287696 -0.6606837 0.7243117 1
15830 1.287696 -0.6606837 0.7243117 1
15831 1.287696 -0.6606837 0.7243117 2
15832 1.287696 -0.6606837 0.7243117 3
15833 1.287696 -0.6606837 0.7243117 1
15834 1.287696 -0.6606837 0.7243117 1
15835 1.287696 -0.6606837 0.7243117 3
15836 1.287696 -0.6606837 0.7243117 3
15837 1.287696 -0.6606837 0.7243117 3
15838 1.287696 -0.6606837 0.7243117 3
15839 1.287696 -0.6606837 0.7243117 2
15840 1.287696 -0.6606837 0.7243117 2
15841 1.287696 -0.6606837 0.7243117 3
15842 1.287696 -0.6606837 0.7243117 1
15843 1.287696 -0.6606837 0.7243117 3
15844 1.287696 -0.6606837 0.7243117 2
15845 1.287696 -0.6606837 0.7243117 2
15846 1.287696 -0.6606837 0.7243117 2
15847 1.287696 -0.6606837 0.7243117 2
15848 1.287696 -0.6606837 0.7243117 1
15849 1.287696 -0.6606837 0.7243117 2
15850 1.287696 -0.6606837 0.7243117 3
15851 1.287696 -0.6606837 0.7243117 2
15852 1.287696 -0.6606837 0.7243117 2
15853 1.287696 -0.6606837 0.7243117 2
15854 1.287696 -0.6606837 0.7243117 2
15855 1.287696 -0.6606837 0.7243117 1
15856 1.287696 -0.6606837 0.7243117 1
15857 1.287696 -0.6606837 0.7243117 2
15858 1.287696 -0.6606837 0.7243117 1
15859 1.287696 -0.6606837 0.7243117 2
15860 1.287696 -0.6606837 0.7243117 3
15861 1.287696 -0.6606837 0.7243117 1
15862 1.287696 -0.6606837 0.7243117 2
15863 1.287696 -0.6606837 0.7243117 3
15864 1.287696 -0.6606837 0.7243117 1
15865 1.287696 -0.6606837 0.7243117 1
15866 1.287696 -0.6606837 0.7243117 2
15867 1.287696 -0.6606837 0.7243117 3
15868 1.287696 -0.6606837 0.7243117 1
15869 1.287696 -0.6606837 0.7243117 1
15870 1.287696 -0.6606837 0.7243117 3
15871 1.287696 -0.6606837 0.7243117 3
15872 1.287696 -0.6606837 0.7243117 1
15873 1.287696 -0.6606837 0.7243117 2
15874 1.287696 -0.6606837 0.7243117 2
15875 1.287696 -0.6606837 0.7243117 3
15876 1.287696 -0.6606837 0.7243117 3
15877 1.287696 -0.6606837 0.7243117 3
15878 1.287696 -0.6606837 0.7243117 2
15879 1.287696 -0.6606837 0.7243117 3
15880 1.287696 -0.6606837 0.7243117 3
15881 1.287696 -0.6606837 0.7243117 1
15882 1.287696 -0.6606837 0.7243117 2
15883 1.287696 -0.6606837 0.7243117 1
15884 1.287696 -0.6606837 0.7243117 3
15885 1.287696 -0.6606837 0.7243117 1
15886 1.287696 -0.6606837 0.7243117 3
15887 1.287696 -0.6606837 0.7243117 2
15888 1.287696 -0.6606837 0.7243117 3
15889 1.287696 -0.6606837 0.7243117 3
15890 1.287696 -0.6606837 0.7243117 2
15891 1.287696 -0.6606837 0.7243117 2
15892 1.287696 -0.6606837 0.7243117 3
15893 1.287696 -0.6606837 0.7243117 2
15894 1.287696 -0.6606837 0.7243117 3
15895 1.287696 -0.6606837 0.7243117 3
15896 1.287696 -0.6606837 0.7243117 3
15897 1.287696 -0.6606837 0.7243117 1
15898 1.287696 -0.6606837 0.7243117 2
15899 1.287696 -0.6606837 0.7243117 1
15900 1.287696 -0.6606837 0.7243117 1
15901 1.287696 -0.6606837 0.7243117 1
15902 1.287696 -0.6606837 0.7243117 3
15903 1.287696 -0.6606837 0.7243117 1
15904 1.287696 -0.6606837 0.7243117 2
15905 1.287696 -0.6606837 0.7243117 2
15906 1.287696 -0.6606837 0.7243117 3
15907 1.287696 -0.6606837 0.7243117 1
15908 1.287696 -0.6606837 0.7243117 1
15909 1.287696 -0.6606837 0.7243117 2
15910 1.287696 -0.6606837 0.7243117 2
15911 1.287696 -0.6606837 0.7243117 3
15912 1.287696 -0.6606837 0.7243117 3
15913 1.287696 -0.6606837 0.7243117 3
15914 1.287696 -0.6606837 0.7243117 3
15915 1.287696 -0.6606837 0.7243117 3
15916 1.287696 -0.6606837 0.7243117 1
15917 1.287696 -0.6606837 0.7243117 2
15918 1.287696 -0.6606837 0.7243117 3
15919 1.287696 -0.6606837 0.7243117 3
15920 1.287696 -0.6606837 0.7243117 1
15921 1.287696 -0.6606837 0.7243117 3
15922 1.287696 -0.6606837 0.7243117 2
15923 1.287696 -0.6606837 0.7243117 2
15924 1.287696 -0.6606837 0.7243117 2
15925 1.287696 -0.6606837 0.7243117 1
15926 1.287696 -0.6606837 0.7243117 3
15927 1.287696 -0.6606837 0.7243117 1
15928 1.287696 -0.6606837 0.7243117 1
15929 1.287696 -0.6606837 0.7243117 1
15930 1.287696 -0.6606837 0.7243117 3
15931 1.287696 -0.6606837 0.7243117 1
15932 1.287696 -0.6606837 0.7243117 2
15933 1.287696 -0.6606837 0.7243117 2
15934 1.287696 -0.6606837 0.7243117 2
15935 1.287696 -0.6606837 0.7243117 3
15936 1.287696 -0.6606837 0.7243117 2
15937 1.287696 -0.6606837 0.7243117 2
15938 1.287696 -0.6606837 0.7243117 2
15939 1.287696 -0.6606837 0.7243117 2
15940 1.287696 -0.6606837 0.7243117 3
15941 1.287696 -0.6606837 0.7243117 3
15942 1.287696 -0.6606837 0.7243117 1
15943 1.287696 -0.6606837 0.7243117 3
15944 1.287696 -0.6606837 0.7243117 3
15945 1.287696 -0.6606837 0.7243117 1
15946 1.287696 -0.6606837 0.7243117 2
15947 1.287696 -0.6606837 0.7243117 1
15948 1.287696 -0.6606837 0.7243117 1
15949 1.287696 -0.6606837 0.7243117 1
15950 1.287696 -0.6606837 0.7243117 2
15951 1.287696 -0.6606837 0.7243117 1
15952 1.287696 -0.6606837 0.7243117 1
15953 1.287696 -0.6606837 0.7243117 3
15954 1.287696 -0.6606837 0.7243117 1
15955 1.287696 -0.6606837 0.7243117 1
15956 1.287696 -0.6606837 0.7243117 2
15957 1.287696 -0.6606837 0.7243117 3
15958 1.287696 -0.6606837 0.7243117 2
15959 1.287696 -0.6606837 0.7243117 3
15960 1.287696 -0.6606837 0.7243117 2
15961 1.287696 -0.6606837 0.7243117 1
15962 1.287696 -0.6606837 0.7243117 3
15963 1.287696 -0.6606837 0.7243117 1
15964 1.287696 -0.6606837 0.7243117 3
15965 1.287696 -0.6606837 0.7243117 2
15966 1.287696 -0.6606837 0.7243117 1
15967 1.287696 -0.6606837 0.7243117 1
15968 1.287696 -0.6606837 0.7243117 1
15969 1.287696 -0.6606837 0.7243117 2
15970 1.287696 -0.6606837 0.7243117 3
15971 1.287696 -0.6606837 0.7243117 1
15972 1.287696 -0.6606837 0.7243117 1
15973 1.287696 -0.6606837 0.7243117 1
15974 1.287696 -0.6606837 0.7243117 2
15975 1.287696 -0.6606837 0.7243117 1
15976 1.287696 -0.6606837 0.7243117 2
15977 1.287696 -0.6606837 0.7243117 1
15978 1.287696 -0.6606837 0.7243117 3
15979 1.287696 -0.6606837 0.7243117 1
15980 1.287696 -0.6606837 0.7243117 3
15981 1.287696 -0.6606837 0.7243117 3
15982 1.287696 -0.6606837 0.7243117 3
15983 1.287696 -0.6606837 0.7243117 2
15984 1.287696 -0.6606837 0.7243117 3
15985 1.287696 -0.6606837 0.7243117 3
15986 1.287696 -0.6606837 0.7243117 2
15987 1.287696 -0.6606837 0.7243117 1
15988 1.287696 -0.6606837 0.7243117 3
15989 1.287696 -0.6606837 0.7243117 3
15990 1.287696 -0.6606837 0.7243117 1
15991 1.287696 -0.6606837 0.7243117 2
15992 1.287696 -0.6606837 0.7243117 2
15993 1.287696 -0.6606837 0.7243117 2
15994 1.287696 -0.6606837 0.7243117 1
15995 1.287696 -0.6606837 0.7243117 2
15996 1.287696 -0.6606837 0.7243117 3
15997 1.287696 -0.6606837 0.7243117 1
15998 1.287696 -0.6606837 0.7243117 1
15999 1.287696 -0.6606837 0.7243117 1
16000 1.287696 -0.6606837 0.7243117 1
16001 1.287696 -0.6606837 0.7243117 2
16002 1.287696 -0.6606837 0.7243117 1
16003 1.287696 -0.6606837 0.7243117 2
16004 1.287696 -0.6606837 0.7243117 1
16005 1.287696 -0.6606837 0.7243117 1
16006 1.287696 -0.6606837 0.7243117 1
16007 1.287696 -0.6606837 0.7243117 2
16008 1.287696 -0.6606837 0.7243117 3
16009 1.287696 -0.6606837 0.7243117 1
16010 1.287696 -0.6606837 0.7243117 3
16011 1.287696 -0.6606837 0.7243117 3
16012 1.287696 -0.6606837 0.7243117 3
16013 1.287696 -0.6606837 0.7243117 1
16014 1.287696 -0.6606837 0.7243117 1
16015 1.287696 -0.6606837 0.7243117 2
16016 1.287696 -0.6606837 0.7243117 3
16017 1.287696 -0.6606837 0.7243117 2
16018 1.287696 -0.6606837 0.7243117 2
16019 1.287696 -0.6606837 0.7243117 2
16020 1.287696 -0.6606837 0.7243117 3
16021 1.287696 -0.6606837 0.7243117 1
16022 1.287696 -0.6606837 0.7243117 1
16023 1.287696 -0.6606837 0.7243117 2
16024 1.287696 -0.6606837 0.7243117 3
16025 1.287696 -0.6606837 0.7243117 2
16026 1.287696 -0.6606837 0.7243117 3
16027 1.287696 -0.6606837 0.7243117 1
16028 1.287696 -0.6606837 0.7243117 3
16029 1.287696 -0.6606837 0.7243117 3
16030 1.287696 -0.6606837 0.7243117 2
16031 1.287696 -0.6606837 0.7243117 2
16032 1.287696 -0.6606837 0.7243117 3
16033 1.287696 -0.6606837 0.7243117 2
16034 1.287696 -0.6606837 0.7243117 2
16035 1.287696 -0.6606837 0.7243117 2
16036 1.287696 -0.6606837 0.7243117 2
16037 1.287696 -0.6606837 0.7243117 1
16038 1.287696 -0.6606837 0.7243117 1
16039 1.287696 -0.6606837 0.7243117 3
16040 1.287696 -0.6606837 0.7243117 2
16041 1.287696 -0.6606837 0.7243117 1
16042 1.287696 -0.6606837 0.7243117 3
16043 1.287696 -0.6606837 0.7243117 3
16044 1.287696 -0.6606837 0.7243117 1
16045 1.287696 -0.6606837 0.7243117 1
16046 1.287696 -0.6606837 0.7243117 1
16047 1.287696 -0.6606837 0.7243117 2
16048 1.287696 -0.6606837 0.7243117 3
16049 1.287696 -0.6606837 0.7243117 2
16050 1.287696 -0.6606837 0.7243117 2
16051 1.287696 -0.6606837 0.7243117 2
16052 1.287696 -0.6606837 0.7243117 1
16053 1.287696 -0.6606837 0.7243117 1
16054 1.287696 -0.6606837 0.7243117 1
16055 1.287696 -0.6606837 0.7243117 3
16056 1.287696 -0.6606837 0.7243117 1
16057 1.287696 -0.6606837 0.7243117 2
16058 1.287696 -0.6606837 0.7243117 3
16059 1.287696 -0.6606837 0.7243117 2
16060 1.287696 -0.6606837 0.7243117 3
16061 1.287696 -0.6606837 0.7243117 2
16062 1.287696 -0.6606837 0.7243117 3
16063 1.287696 -0.6606837 0.7243117 1
16064 1.287696 -0.6606837 0.7243117 3
16065 1.287696 -0.6606837 0.7243117 2
16066 1.287696 -0.6606837 0.7243117 2
16067 1.287696 -0.6606837 0.7243117 3
16068 1.287696 -0.6606837 0.7243117 1
16069 1.287696 -0.6606837 0.7243117 3
16070 1.287696 -0.6606837 0.7243117 1
16071 1.287696 -0.6606837 0.7243117 2
16072 1.287696 -0.6606837 0.7243117 2
16073 1.287696 -0.6606837 0.7243117 3
16074 1.287696 -0.6606837 0.7243117 2
16075 1.287696 -0.6606837 0.7243117 2
16076 1.287696 -0.6606837 0.7243117 3
16077 1.287696 -0.6606837 0.7243117 1
16078 1.287696 -0.6606837 0.7243117 2
16079 1.287696 -0.6606837 0.7243117 3
16080 1.287696 -0.6606837 0.7243117 1
16081 1.287696 -0.6606837 0.7243117 1
16082 1.287696 -0.6606837 0.7243117 1
16083 1.287696 -0.6606837 0.7243117 1
16084 1.287696 -0.6606837 0.7243117 2
16085 1.287696 -0.6606837 0.7243117 3
16086 1.287696 -0.6606837 0.7243117 1
16087 1.287696 -0.6606837 0.7243117 3
16088 1.287696 -0.6606837 0.7243117 3
16089 1.287696 -0.6606837 0.7243117 2
16090 1.287696 -0.6606837 0.7243117 3
16091 1.287696 -0.6606837 0.7243117 3
16092 1.287696 -0.6606837 0.7243117 2
16093 1.287696 -0.6606837 0.7243117 1
16094 1.287696 -0.6606837 0.7243117 1
16095 1.287696 -0.6606837 0.7243117 3
16096 1.287696 -0.6606837 0.7243117 3
16097 1.287696 -0.6606837 0.7243117 3
16098 1.287696 -0.6606837 0.7243117 3
16099 1.287696 -0.6606837 0.7243117 2
16100 1.287696 -0.6606837 0.7243117 3
16101 1.287696 -0.6606837 0.7243117 2
16102 1.287696 -0.6606837 0.7243117 3
16103 1.287696 -0.6606837 0.7243117 1
16104 1.287696 -0.6606837 0.7243117 1
16105 1.287696 -0.6606837 0.7243117 3
16106 1.287696 -0.6606837 0.7243117 3
16107 1.287696 -0.6606837 0.7243117 1
16108 1.287696 -0.6606837 0.7243117 1
16109 1.287696 -0.6606837 0.7243117 1
16110 1.287696 -0.6606837 0.7243117 2
16111 1.287696 -0.6606837 0.7243117 3
16112 1.287696 -0.6606837 0.7243117 1
16113 1.287696 -0.6606837 0.7243117 2
16114 1.287696 -0.6606837 0.7243117 3
16115 1.287696 -0.6606837 0.7243117 1
16116 1.287696 -0.6606837 0.7243117 2
16117 1.287696 -0.6606837 0.7243117 3
16118 1.287696 -0.6606837 0.7243117 3
16119 1.287696 -0.6606837 0.7243117 1
16120 1.287696 -0.6606837 0.7243117 1
16121 1.287696 -0.6606837 0.7243117 2
16122 1.287696 -0.6606837 0.7243117 3
16123 1.287696 -0.6606837 0.7243117 2
16124 1.287696 -0.6606837 0.7243117 2
16125 1.287696 -0.6606837 0.7243117 3
16126 1.287696 -0.6606837 0.7243117 3
16127 1.287696 -0.6606837 0.7243117 2
16128 1.287696 -0.6606837 0.7243117 3
16129 1.287696 -0.6606837 0.7243117 1
16130 1.287696 -0.6606837 0.7243117 1
16131 1.287696 -0.6606837 0.7243117 2
16132 1.287696 -0.6606837 0.7243117 3
16133 1.287696 -0.6606837 0.7243117 1
16134 1.287696 -0.6606837 0.7243117 2
16135 1.287696 -0.6606837 0.7243117 1
16136 1.287696 -0.6606837 0.7243117 2
16137 1.287696 -0.6606837 0.7243117 2
16138 1.287696 -0.6606837 0.7243117 3
16139 1.287696 -0.6606837 0.7243117 2
16140 1.287696 -0.6606837 0.7243117 3
16141 1.287696 -0.6606837 0.7243117 3
16142 1.287696 -0.6606837 0.7243117 3
16143 1.287696 -0.6606837 0.7243117 3
16144 1.287696 -0.6606837 0.7243117 2
16145 1.287696 -0.6606837 0.7243117 2
16146 1.287696 -0.6606837 0.7243117 1
16147 1.287696 -0.6606837 0.7243117 2
16148 1.287696 -0.6606837 0.7243117 3
16149 1.287696 -0.6606837 0.7243117 2
16150 1.287696 -0.6606837 0.7243117 1
16151 1.287696 -0.6606837 0.7243117 1
16152 1.287696 -0.6606837 0.7243117 1
16153 1.287696 -0.6606837 0.7243117 2
16154 1.287696 -0.6606837 0.7243117 1
16155 1.287696 -0.6606837 0.7243117 1
16156 1.287696 -0.6606837 0.7243117 3
16157 1.287696 -0.6606837 0.7243117 1
16158 1.287696 -0.6606837 0.7243117 3
16159 1.287696 -0.6606837 0.7243117 1
16160 1.287696 -0.6606837 0.7243117 1
16161 1.287696 -0.6606837 0.7243117 3
16162 1.287696 -0.6606837 0.7243117 2
16163 1.287696 -0.6606837 0.7243117 2
16164 1.287696 -0.6606837 0.7243117 3
16165 1.287696 -0.6606837 0.7243117 2
16166 1.287696 -0.6606837 0.7243117 2
16167 1.287696 -0.6606837 0.7243117 1
16168 1.287696 -0.6606837 0.7243117 1
16169 1.287696 -0.6606837 0.7243117 2
16170 1.287696 -0.6606837 0.7243117 3
16171 1.287696 -0.6606837 0.7243117 1
16172 1.287696 -0.6606837 0.7243117 2
16173 1.287696 -0.6606837 0.7243117 3
16174 1.287696 -0.6606837 0.7243117 2
16175 1.287696 -0.6606837 0.7243117 3
16176 1.287696 -0.6606837 0.7243117 3
16177 1.287696 -0.6606837 0.7243117 2
16178 1.287696 -0.6606837 0.7243117 3
16179 1.287696 -0.6606837 0.7243117 2
16180 1.287696 -0.6606837 0.7243117 2
16181 1.287696 -0.6606837 0.7243117 1
16182 1.287696 -0.6606837 0.7243117 1
16183 1.287696 -0.6606837 0.7243117 1
16184 1.287696 -0.6606837 0.7243117 3
16185 1.287696 -0.6606837 0.7243117 3
16186 1.287696 -0.6606837 0.7243117 2
16187 1.287696 -0.6606837 0.7243117 2
16188 1.287696 -0.6606837 0.7243117 2
16189 1.287696 -0.6606837 0.7243117 1
16190 1.287696 -0.6606837 0.7243117 3
16191 1.287696 -0.6606837 0.7243117 1
16192 1.287696 -0.6606837 0.7243117 1
16193 1.287696 -0.6606837 0.7243117 3
16194 1.287696 -0.6606837 0.7243117 2
16195 1.287696 -0.6606837 0.7243117 1
16196 1.287696 -0.6606837 0.7243117 1
16197 1.287696 -0.6606837 0.7243117 2
16198 1.287696 -0.6606837 0.7243117 1
16199 1.287696 -0.6606837 0.7243117 2
16200 1.287696 -0.6606837 0.7243117 3
16201 1.287696 -0.6606837 0.7243117 2
16202 1.287696 -0.6606837 0.7243117 1
16203 1.287696 -0.6606837 0.7243117 3
16204 1.287696 -0.6606837 0.7243117 1
16205 1.287696 -0.6606837 0.7243117 3
16206 1.287696 -0.6606837 0.7243117 1
16207 1.287696 -0.6606837 0.7243117 1
16208 1.287696 -0.6606837 0.7243117 1
16209 1.287696 -0.6606837 0.7243117 1
16210 1.287696 -0.6606837 0.7243117 3
16211 1.287696 -0.6606837 0.7243117 2
16212 1.287696 -0.6606837 0.7243117 1
16213 1.287696 -0.6606837 0.7243117 1
16214 1.287696 -0.6606837 0.7243117 1
16215 1.287696 -0.6606837 0.7243117 3
16216 1.287696 -0.6606837 0.7243117 3
16217 1.287696 -0.6606837 0.7243117 3
16218 1.287696 -0.6606837 0.7243117 2
16219 1.287696 -0.6606837 0.7243117 3
16220 1.287696 -0.6606837 0.7243117 1
16221 1.287696 -0.6606837 0.7243117 3
16222 1.287696 -0.6606837 0.7243117 1
16223 1.287696 -0.6606837 0.7243117 1
16224 1.287696 -0.6606837 0.7243117 1
16225 1.287696 -0.6606837 0.7243117 1
16226 1.287696 -0.6606837 0.7243117 1
16227 1.287696 -0.6606837 0.7243117 2
16228 1.287696 -0.6606837 0.7243117 2
16229 1.287696 -0.6606837 0.7243117 3
16230 1.287696 -0.6606837 0.7243117 1
16231 1.287696 -0.6606837 0.7243117 1
16232 1.287696 -0.6606837 0.7243117 1
16233 1.287696 -0.6606837 0.7243117 1
16234 1.287696 -0.6606837 0.7243117 3
16235 1.287696 -0.6606837 0.7243117 1
16236 1.287696 -0.6606837 0.7243117 1
16237 1.287696 -0.6606837 0.7243117 3
16238 1.287696 -0.6606837 0.7243117 3
16239 1.287696 -0.6606837 0.7243117 2
16240 1.287696 -0.6606837 0.7243117 1
16241 1.287696 -0.6606837 0.7243117 3
16242 1.287696 -0.6606837 0.7243117 3
16243 1.287696 -0.6606837 0.7243117 1
16244 1.287696 -0.6606837 0.7243117 3
16245 1.287696 -0.6606837 0.7243117 1
16246 1.287696 -0.6606837 0.7243117 2
16247 1.287696 -0.6606837 0.7243117 1
16248 1.287696 -0.6606837 0.7243117 2
16249 1.287696 -0.6606837 0.7243117 1
16250 1.287696 -0.6606837 0.7243117 2
16251 1.287696 -0.6606837 0.7243117 3
16252 1.287696 -0.6606837 0.7243117 3
16253 1.287696 -0.6606837 0.7243117 2
16254 1.287696 -0.6606837 0.7243117 2
16255 1.287696 -0.6606837 0.7243117 2
16256 1.287696 -0.6606837 0.7243117 3
16257 1.287696 -0.6606837 0.7243117 3
16258 1.287696 -0.6606837 0.7243117 2
16259 1.287696 -0.6606837 0.7243117 1
16260 1.287696 -0.6606837 0.7243117 2
16261 1.287696 -0.6606837 0.7243117 1
16262 1.287696 -0.6606837 0.7243117 3
16263 1.287696 -0.6606837 0.7243117 3
16264 1.287696 -0.6606837 0.7243117 1
16265 1.287696 -0.6606837 0.7243117 1
16266 1.287696 -0.6606837 0.7243117 3
16267 1.287696 -0.6606837 0.7243117 3
16268 1.287696 -0.6606837 0.7243117 3
16269 1.287696 -0.6606837 0.7243117 3
16270 1.287696 -0.6606837 0.7243117 3
16271 1.287696 -0.6606837 0.7243117 2
16272 1.287696 -0.6606837 0.7243117 1
16273 1.287696 -0.6606837 0.7243117 1
16274 1.287696 -0.6606837 0.7243117 3
16275 1.287696 -0.6606837 0.7243117 1
16276 1.287696 -0.6606837 0.7243117 3
16277 1.287696 -0.6606837 0.7243117 2
16278 1.287696 -0.6606837 0.7243117 3
16279 1.287696 -0.6606837 0.7243117 2
16280 1.287696 -0.6606837 0.7243117 3
16281 1.287696 -0.6606837 0.7243117 1
16282 1.287696 -0.6606837 0.7243117 1
16283 1.287696 -0.6606837 0.7243117 2
16284 1.287696 -0.6606837 0.7243117 3
16285 1.287696 -0.6606837 0.7243117 3
16286 1.287696 -0.6606837 0.7243117 2
16287 1.287696 -0.6606837 0.7243117 1
16288 1.287696 -0.6606837 0.7243117 1
16289 1.287696 -0.6606837 0.7243117 1
16290 1.287696 -0.6606837 0.7243117 2
16291 1.287696 -0.6606837 0.7243117 2
16292 1.287696 -0.6606837 0.7243117 2
16293 1.287696 -0.6606837 0.7243117 2
16294 1.287696 -0.6606837 0.7243117 2
16295 1.287696 -0.6606837 0.7243117 1
16296 1.287696 -0.6606837 0.7243117 3
16297 1.287696 -0.6606837 0.7243117 1
16298 1.287696 -0.6606837 0.7243117 2
16299 1.287696 -0.6606837 0.7243117 1
16300 1.287696 -0.6606837 0.7243117 1
16301 1.287696 -0.6606837 0.7243117 1
16302 1.287696 -0.6606837 0.7243117 2
16303 1.287696 -0.6606837 0.7243117 3
16304 1.287696 -0.6606837 0.7243117 3
16305 1.287696 -0.6606837 0.7243117 1
16306 1.287696 -0.6606837 0.7243117 1
16307 1.287696 -0.6606837 0.7243117 3
16308 1.287696 -0.6606837 0.7243117 3
16309 1.287696 -0.6606837 0.7243117 1
16310 1.287696 -0.6606837 0.7243117 2
16311 1.287696 -0.6606837 0.7243117 2
16312 1.287696 -0.6606837 0.7243117 2
16313 1.287696 -0.6606837 0.7243117 3
16314 1.287696 -0.6606837 0.7243117 1
16315 1.287696 -0.6606837 0.7243117 3
16316 1.287696 -0.6606837 0.7243117 1
16317 1.287696 -0.6606837 0.7243117 1
16318 1.287696 -0.6606837 0.7243117 1
16319 1.287696 -0.6606837 0.7243117 3
16320 1.287696 -0.6606837 0.7243117 2
16321 1.287696 -0.6606837 0.7243117 2
16322 1.287696 -0.6606837 0.7243117 1
16323 1.287696 -0.6606837 0.7243117 3
16324 1.287696 -0.6606837 0.7243117 1
16325 1.287696 -0.6606837 0.7243117 2
16326 1.287696 -0.6606837 0.7243117 2
16327 1.287696 -0.6606837 0.7243117 3
16328 1.287696 -0.6606837 0.7243117 2
16329 1.287696 -0.6606837 0.7243117 3
16330 1.287696 -0.6606837 0.7243117 1
16331 1.287696 -0.6606837 0.7243117 1
16332 1.287696 -0.6606837 0.7243117 1
16333 1.287696 -0.6606837 0.7243117 2
16334 1.287696 -0.6606837 0.7243117 2
16335 1.287696 -0.6606837 0.7243117 3
16336 1.287696 -0.6606837 0.7243117 3
16337 1.287696 -0.6606837 0.7243117 3
16338 1.287696 -0.6606837 0.7243117 3
16339 1.287696 -0.6606837 0.7243117 2
16340 1.287696 -0.6606837 0.7243117 3
16341 1.287696 -0.6606837 0.7243117 3
16342 1.287696 -0.6606837 0.7243117 2
16343 1.287696 -0.6606837 0.7243117 2
16344 1.287696 -0.6606837 0.7243117 1
16345 1.287696 -0.6606837 0.7243117 2
16346 1.287696 -0.6606837 0.7243117 2
16347 1.287696 -0.6606837 0.7243117 1
16348 1.287696 -0.6606837 0.7243117 2
16349 1.287696 -0.6606837 0.7243117 2
16350 1.287696 -0.6606837 0.7243117 3
16351 1.287696 -0.6606837 0.7243117 3
16352 1.287696 -0.6606837 0.7243117 2
16353 1.287696 -0.6606837 0.7243117 2
16354 1.287696 -0.6606837 0.7243117 1
16355 1.287696 -0.6606837 0.7243117 2
16356 1.287696 -0.6606837 0.7243117 3
16357 1.287696 -0.6606837 0.7243117 3
16358 1.287696 -0.6606837 0.7243117 2
16359 1.287696 -0.6606837 0.7243117 2
16360 1.287696 -0.6606837 0.7243117 1
16361 1.287696 -0.6606837 0.7243117 3
16362 1.287696 -0.6606837 0.7243117 1
16363 1.287696 -0.6606837 0.7243117 2
16364 1.287696 -0.6606837 0.7243117 2
16365 1.287696 -0.6606837 0.7243117 2
16366 1.287696 -0.6606837 0.7243117 1
16367 1.287696 -0.6606837 0.7243117 3
16368 1.287696 -0.6606837 0.7243117 2
16369 1.287696 -0.6606837 0.7243117 1
16370 1.287696 -0.6606837 0.7243117 2
16371 1.287696 -0.6606837 0.7243117 1
16372 1.287696 -0.6606837 0.7243117 1
16373 1.287696 -0.6606837 0.7243117 2
16374 1.287696 -0.6606837 0.7243117 1
16375 1.287696 -0.6606837 0.7243117 1
16376 1.287696 -0.6606837 0.7243117 1
16377 1.287696 -0.6606837 0.7243117 3
16378 1.287696 -0.6606837 0.7243117 1
16379 1.287696 -0.6606837 0.7243117 2
16380 1.287696 -0.6606837 0.7243117 1
16381 1.287696 -0.6606837 0.7243117 1
16382 1.287696 -0.6606837 0.7243117 1
16383 1.287696 -0.6606837 0.7243117 3
16384 1.287696 -0.6606837 0.7243117 3
16385 1.287696 -0.6606837 0.7243117 1
16386 1.287696 -0.6606837 0.7243117 3
16387 1.287696 -0.6606837 0.7243117 3
16388 1.287696 -0.6606837 0.7243117 3
16389 1.287696 -0.6606837 0.7243117 1
16390 1.287696 -0.6606837 0.7243117 1
16391 1.287696 -0.6606837 0.7243117 2
16392 1.287696 -0.6606837 0.7243117 1
16393 1.287696 -0.6606837 0.7243117 2
16394 1.287696 -0.6606837 0.7243117 1
16395 1.287696 -0.6606837 0.7243117 3
16396 1.287696 -0.6606837 0.7243117 2
16397 1.287696 -0.6606837 0.7243117 2
16398 1.287696 -0.6606837 0.7243117 2
16399 1.287696 -0.6606837 0.7243117 1
16400 1.287696 -0.6606837 0.7243117 3
16401 1.287696 -0.6606837 0.7243117 3
16402 1.287696 -0.6606837 0.7243117 2
16403 1.287696 -0.6606837 0.7243117 3
16404 1.287696 -0.6606837 0.7243117 3
16405 1.287696 -0.6606837 0.7243117 1
16406 1.287696 -0.6606837 0.7243117 3
16407 1.287696 -0.6606837 0.7243117 3
16408 1.287696 -0.6606837 0.7243117 1
16409 1.287696 -0.6606837 0.7243117 3
16410 1.287696 -0.6606837 0.7243117 3
16411 1.287696 -0.6606837 0.7243117 1
16412 1.287696 -0.6606837 0.7243117 3
16413 1.287696 -0.6606837 0.7243117 1
16414 1.287696 -0.6606837 0.7243117 3
16415 1.287696 -0.6606837 0.7243117 1
16416 1.287696 -0.6606837 0.7243117 3
16417 1.287696 -0.6606837 0.7243117 2
16418 1.287696 -0.6606837 0.7243117 2
16419 1.287696 -0.6606837 0.7243117 1
16420 1.287696 -0.6606837 0.7243117 2
16421 1.287696 -0.6606837 0.7243117 2
16422 1.287696 -0.6606837 0.7243117 2
16423 1.287696 -0.6606837 0.7243117 1
16424 1.287696 -0.6606837 0.7243117 2
16425 1.287696 -0.6606837 0.7243117 2
16426 1.287696 -0.6606837 0.7243117 2
16427 1.287696 -0.6606837 0.7243117 2
16428 1.287696 -0.6606837 0.7243117 1
16429 1.287696 -0.6606837 0.7243117 1
16430 1.287696 -0.6606837 0.7243117 2
16431 1.287696 -0.6606837 0.7243117 2
16432 1.287696 -0.6606837 0.7243117 1
16433 1.287696 -0.6606837 0.7243117 1
16434 1.287696 -0.6606837 0.7243117 1
16435 1.287696 -0.6606837 0.7243117 1
16436 1.287696 -0.6606837 0.7243117 1
16437 1.287696 -0.6606837 0.7243117 1
16438 1.287696 -0.6606837 0.7243117 2
16439 1.287696 -0.6606837 0.7243117 1
16440 1.287696 -0.6606837 0.7243117 3
16441 1.287696 -0.6606837 0.7243117 3
16442 1.287696 -0.6606837 0.7243117 3
16443 1.287696 -0.6606837 0.7243117 3
16444 1.287696 -0.6606837 0.7243117 1
16445 1.287696 -0.6606837 0.7243117 1
16446 1.287696 -0.6606837 0.7243117 1
16447 1.287696 -0.6606837 0.7243117 2
16448 1.287696 -0.6606837 0.7243117 3
16449 1.287696 -0.6606837 0.7243117 2
16450 1.287696 -0.6606837 0.7243117 2
16451 1.287696 -0.6606837 0.7243117 1
16452 1.287696 -0.6606837 0.7243117 1
16453 1.287696 -0.6606837 0.7243117 3
16454 1.287696 -0.6606837 0.7243117 2
16455 1.287696 -0.6606837 0.7243117 3
16456 1.287696 -0.6606837 0.7243117 1
16457 1.287696 -0.6606837 0.7243117 1
16458 1.287696 -0.6606837 0.7243117 1
16459 1.287696 -0.6606837 0.7243117 1
16460 1.287696 -0.6606837 0.7243117 3
16461 1.287696 -0.6606837 0.7243117 3
16462 1.287696 -0.6606837 0.7243117 2
16463 1.287696 -0.6606837 0.7243117 2
16464 1.287696 -0.6606837 0.7243117 3
16465 1.287696 -0.6606837 0.7243117 2
16466 1.287696 -0.6606837 0.7243117 3
16467 1.287696 -0.6606837 0.7243117 1
16468 1.287696 -0.6606837 0.7243117 2
16469 1.287696 -0.6606837 0.7243117 3
16470 1.287696 -0.6606837 0.7243117 3
16471 1.287696 -0.6606837 0.7243117 2
16472 1.287696 -0.6606837 0.7243117 1
16473 1.287696 -0.6606837 0.7243117 2
16474 1.287696 -0.6606837 0.7243117 1
16475 1.287696 -0.6606837 0.7243117 2
16476 1.287696 -0.6606837 0.7243117 2
16477 1.287696 -0.6606837 0.7243117 3
16478 1.287696 -0.6606837 0.7243117 1
16479 1.287696 -0.6606837 0.7243117 1
16480 1.287696 -0.6606837 0.7243117 1
16481 1.287696 -0.6606837 0.7243117 2
16482 1.287696 -0.6606837 0.7243117 1
16483 1.287696 -0.6606837 0.7243117 1
16484 1.287696 -0.6606837 0.7243117 3
16485 1.287696 -0.6606837 0.7243117 2
16486 1.287696 -0.6606837 0.7243117 3
16487 1.287696 -0.6606837 0.7243117 3
16488 1.287696 -0.6606837 0.7243117 3
16489 1.287696 -0.6606837 0.7243117 1
16490 1.287696 -0.6606837 0.7243117 2
16491 1.287696 -0.6606837 0.7243117 1
16492 1.287696 -0.6606837 0.7243117 1
16493 1.287696 -0.6606837 0.7243117 2
16494 1.287696 -0.6606837 0.7243117 3
16495 1.287696 -0.6606837 0.7243117 1
16496 1.287696 -0.6606837 0.7243117 3
16497 1.287696 -0.6606837 0.7243117 1
16498 1.287696 -0.6606837 0.7243117 3
16499 1.287696 -0.6606837 0.7243117 2
16500 1.287696 -0.6606837 0.7243117 1
16501 1.287696 -0.6606837 0.7243117 3
16502 1.287696 -0.6606837 0.7243117 2
16503 1.287696 -0.6606837 0.7243117 2
16504 1.287696 -0.6606837 0.7243117 2
16505 1.287696 -0.6606837 0.7243117 1
16506 1.287696 -0.6606837 0.7243117 2
16507 1.287696 -0.6606837 0.7243117 3
16508 1.287696 -0.6606837 0.7243117 3
16509 1.287696 -0.6606837 0.7243117 3
16510 1.287696 -0.6606837 0.7243117 2
16511 1.287696 -0.6606837 0.7243117 3
16512 1.287696 -0.6606837 0.7243117 1
16513 1.287696 -0.6606837 0.7243117 2
16514 1.287696 -0.6606837 0.7243117 1
16515 1.287696 -0.6606837 0.7243117 3
16516 1.287696 -0.6606837 0.7243117 1
16517 1.287696 -0.6606837 0.7243117 1
16518 1.287696 -0.6606837 0.7243117 2
16519 1.287696 -0.6606837 0.7243117 1
16520 1.287696 -0.6606837 0.7243117 2
16521 1.287696 -0.6606837 0.7243117 3
16522 1.287696 -0.6606837 0.7243117 1
16523 1.287696 -0.6606837 0.7243117 3
16524 1.287696 -0.6606837 0.7243117 3
16525 1.287696 -0.6606837 0.7243117 3
16526 1.287696 -0.6606837 0.7243117 2
16527 1.287696 -0.6606837 0.7243117 3
16528 1.287696 -0.6606837 0.7243117 1
16529 1.287696 -0.6606837 0.7243117 3
16530 1.287696 -0.6606837 0.7243117 3
16531 1.287696 -0.6606837 0.7243117 3
16532 1.287696 -0.6606837 0.7243117 1
16533 1.287696 -0.6606837 0.7243117 1
16534 1.287696 -0.6606837 0.7243117 1
16535 1.287696 -0.6606837 0.7243117 3
16536 1.287696 -0.6606837 0.7243117 3
16537 1.287696 -0.6606837 0.7243117 1
16538 1.287696 -0.6606837 0.7243117 2
16539 1.287696 -0.6606837 0.7243117 1
16540 1.287696 -0.6606837 0.7243117 3
16541 1.287696 -0.6606837 0.7243117 2
16542 1.287696 -0.6606837 0.7243117 3
16543 1.294466 -0.6592475 0.7217272 3
16544 1.294466 -0.6592475 0.7217272 1
16545 1.294466 -0.6592475 0.7217272 2
16546 1.294466 -0.6592475 0.7217272 1
16547 1.294466 -0.6592475 0.7217272 2
16548 1.294466 -0.6592475 0.7217272 1
16549 1.294466 -0.6592475 0.7217272 2
16550 1.294466 -0.6592475 0.7217272 2
16551 1.294466 -0.6592475 0.7217272 1
16552 1.294466 -0.6592475 0.7217272 1
16553 1.294466 -0.6592475 0.7217272 1
16554 1.294466 -0.6592475 0.7217272 1
16555 1.294466 -0.6592475 0.7217272 3
16556 1.294466 -0.6592475 0.7217272 1
16557 1.294466 -0.6592475 0.7217272 3
16558 1.294466 -0.6592475 0.7217272 3
16559 1.294466 -0.6592475 0.7217272 1
16560 1.294466 -0.6592475 0.7217272 1
16561 1.294466 -0.6592475 0.7217272 3
16562 1.294466 -0.6592475 0.7217272 3
16563 1.294466 -0.6592475 0.7217272 3
16564 1.294466 -0.6592475 0.7217272 2
16565 1.294466 -0.6592475 0.7217272 1
16566 1.294466 -0.6592475 0.7217272 1
16567 1.294466 -0.6592475 0.7217272 3
16568 1.294466 -0.6592475 0.7217272 1
16569 1.294466 -0.6592475 0.7217272 2
16570 1.294466 -0.6592475 0.7217272 2
16571 1.294466 -0.6592475 0.7217272 2
16572 1.294466 -0.6592475 0.7217272 3
16573 1.294466 -0.6592475 0.7217272 3
16574 1.294466 -0.6592475 0.7217272 3
16575 1.294466 -0.6592475 0.7217272 1
16576 1.294466 -0.6592475 0.7217272 1
16577 1.294466 -0.6592475 0.7217272 1
16578 1.294466 -0.6592475 0.7217272 2
16579 1.294466 -0.6592475 0.7217272 1
16580 1.294466 -0.6592475 0.7217272 2
16581 1.294466 -0.6592475 0.7217272 3
16582 1.294466 -0.6592475 0.7217272 3
16583 1.294466 -0.6592475 0.7217272 3
16584 1.294466 -0.6592475 0.7217272 1
16585 1.294466 -0.6592475 0.7217272 2
16586 1.294466 -0.6592475 0.7217272 3
16587 1.294466 -0.6592475 0.7217272 1
16588 1.294466 -0.6592475 0.7217272 2
16589 1.294466 -0.6592475 0.7217272 3
16590 1.294466 -0.6592475 0.7217272 1
16591 1.294466 -0.6592475 0.7217272 3
16592 1.294466 -0.6592475 0.7217272 3
16593 1.294466 -0.6592475 0.7217272 3
16594 1.294466 -0.6592475 0.7217272 1
16595 1.294466 -0.6592475 0.7217272 1
16596 1.294466 -0.6592475 0.7217272 1
16597 1.294466 -0.6592475 0.7217272 1
16598 1.294466 -0.6592475 0.7217272 1
16599 1.294466 -0.6592475 0.7217272 1
16600 1.294466 -0.6592475 0.7217272 1
16601 1.294466 -0.6592475 0.7217272 3
16602 1.294466 -0.6592475 0.7217272 1
16603 1.294466 -0.6592475 0.7217272 3
16604 1.294466 -0.6592475 0.7217272 2
16605 1.294466 -0.6592475 0.7217272 3
16606 1.294466 -0.6592475 0.7217272 2
16607 1.294466 -0.6592475 0.7217272 3
16608 1.294466 -0.6592475 0.7217272 2
16609 1.294466 -0.6592475 0.7217272 2
16610 1.294466 -0.6592475 0.7217272 3
16611 1.294466 -0.6592475 0.7217272 3
16612 1.294466 -0.6592475 0.7217272 2
16613 1.294466 -0.6592475 0.7217272 1
16614 1.294466 -0.6592475 0.7217272 3
16615 1.294466 -0.6592475 0.7217272 3
16616 1.294466 -0.6592475 0.7217272 2
16617 1.294466 -0.6592475 0.7217272 1
16618 1.294466 -0.6592475 0.7217272 1
16619 1.294466 -0.6592475 0.7217272 1
16620 1.294466 -0.6592475 0.7217272 1
16621 1.294466 -0.6592475 0.7217272 3
16622 1.294466 -0.6592475 0.7217272 2
16623 1.294466 -0.6592475 0.7217272 2
16624 1.294466 -0.6592475 0.7217272 2
16625 1.294466 -0.6592475 0.7217272 3
16626 1.294466 -0.6592475 0.7217272 3
16627 1.294466 -0.6592475 0.7217272 1
16628 1.294466 -0.6592475 0.7217272 3
16629 1.294466 -0.6592475 0.7217272 2
16630 1.294466 -0.6592475 0.7217272 2
16631 1.294466 -0.6592475 0.7217272 1
16632 1.294466 -0.6592475 0.7217272 3
16633 1.294466 -0.6592475 0.7217272 2
16634 1.294466 -0.6592475 0.7217272 2
16635 1.294466 -0.6592475 0.7217272 2
16636 1.294466 -0.6592475 0.7217272 3
16637 1.294466 -0.6592475 0.7217272 1
16638 1.294466 -0.6592475 0.7217272 2
16639 1.294466 -0.6592475 0.7217272 1
16640 1.294466 -0.6592475 0.7217272 1
16641 1.294466 -0.6592475 0.7217272 3
16642 1.294466 -0.6592475 0.7217272 3
16643 1.294466 -0.6592475 0.7217272 1
16644 1.294466 -0.6592475 0.7217272 3
16645 1.294466 -0.6592475 0.7217272 3
16646 1.294466 -0.6592475 0.7217272 3
16647 1.294466 -0.6592475 0.7217272 2
16648 1.294466 -0.6592475 0.7217272 2
16649 1.294466 -0.6592475 0.7217272 2
16650 1.294466 -0.6592475 0.7217272 3
16651 1.294466 -0.6592475 0.7217272 3
16652 1.294466 -0.6592475 0.7217272 3
16653 1.294466 -0.6592475 0.7217272 1
16654 1.294466 -0.6592475 0.7217272 1
16655 1.294466 -0.6592475 0.7217272 1
16656 1.294466 -0.6592475 0.7217272 2
16657 1.294466 -0.6592475 0.7217272 2
16658 1.294466 -0.6592475 0.7217272 2
16659 1.294466 -0.6592475 0.7217272 2
16660 1.294466 -0.6592475 0.7217272 1
16661 1.294466 -0.6592475 0.7217272 2
16662 1.294466 -0.6592475 0.7217272 2
16663 1.294466 -0.6592475 0.7217272 2
16664 1.294466 -0.6592475 0.7217272 3
16665 1.294466 -0.6592475 0.7217272 3
16666 1.294466 -0.6592475 0.7217272 3
16667 1.294466 -0.6592475 0.7217272 3
16668 1.294466 -0.6592475 0.7217272 2
16669 1.294466 -0.6592475 0.7217272 3
16670 1.294466 -0.6592475 0.7217272 3
16671 1.294466 -0.6592475 0.7217272 1
16672 1.294466 -0.6592475 0.7217272 1
16673 1.294466 -0.6592475 0.7217272 1
16674 1.294466 -0.6592475 0.7217272 3
16675 1.294466 -0.6592475 0.7217272 1
16676 1.294466 -0.6592475 0.7217272 3
16677 1.294466 -0.6592475 0.7217272 1
16678 1.294466 -0.6592475 0.7217272 2
16679 1.294466 -0.6592475 0.7217272 1
16680 1.294466 -0.6592475 0.7217272 1
16681 1.294466 -0.6592475 0.7217272 3
16682 1.294466 -0.6592475 0.7217272 1
16683 1.294466 -0.6592475 0.7217272 3
16684 1.294466 -0.6592475 0.7217272 1
16685 1.294466 -0.6592475 0.7217272 2
16686 1.294466 -0.6592475 0.7217272 3
16687 1.294466 -0.6592475 0.7217272 1
16688 1.294466 -0.6592475 0.7217272 3
16689 1.294466 -0.6592475 0.7217272 2
16690 1.294466 -0.6592475 0.7217272 1
16691 1.294466 -0.6592475 0.7217272 1
16692 1.294466 -0.6592475 0.7217272 3
16693 1.294466 -0.6592475 0.7217272 3
16694 1.294466 -0.6592475 0.7217272 3
16695 1.294466 -0.6592475 0.7217272 2
16696 1.294466 -0.6592475 0.7217272 1
16697 1.294466 -0.6592475 0.7217272 3
16698 1.294466 -0.6592475 0.7217272 2
16699 1.294466 -0.6592475 0.7217272 3
16700 1.294466 -0.6592475 0.7217272 2
16701 1.294466 -0.6592475 0.7217272 2
16702 1.294466 -0.6592475 0.7217272 3
16703 1.294466 -0.6592475 0.7217272 2
16704 1.294466 -0.6592475 0.7217272 3
16705 1.294466 -0.6592475 0.7217272 2
16706 1.294466 -0.6592475 0.7217272 1
16707 1.294466 -0.6592475 0.7217272 3
16708 1.294466 -0.6592475 0.7217272 3
16709 1.294466 -0.6592475 0.7217272 3
16710 1.294466 -0.6592475 0.7217272 2
16711 1.294466 -0.6592475 0.7217272 1
16712 1.294466 -0.6592475 0.7217272 1
16713 1.294466 -0.6592475 0.7217272 1
16714 1.294466 -0.6592475 0.7217272 2
16715 1.294466 -0.6592475 0.7217272 1
16716 1.294466 -0.6592475 0.7217272 3
16717 1.294466 -0.6592475 0.7217272 2
16718 1.294466 -0.6592475 0.7217272 2
16719 1.294466 -0.6592475 0.7217272 3
16720 1.294466 -0.6592475 0.7217272 3
16721 1.294466 -0.6592475 0.7217272 2
16722 1.294466 -0.6592475 0.7217272 2
16723 1.294466 -0.6592475 0.7217272 1
16724 1.294466 -0.6592475 0.7217272 2
16725 1.294466 -0.6592475 0.7217272 3
16726 1.294466 -0.6592475 0.7217272 1
16727 1.294466 -0.6592475 0.7217272 1
16728 1.294466 -0.6592475 0.7217272 1
16729 1.294466 -0.6592475 0.7217272 3
16730 1.294466 -0.6592475 0.7217272 2
16731 1.294466 -0.6592475 0.7217272 1
16732 1.294466 -0.6592475 0.7217272 3
16733 1.294466 -0.6592475 0.7217272 2
16734 1.294466 -0.6592475 0.7217272 1
16735 1.294466 -0.6592475 0.7217272 1
16736 1.294466 -0.6592475 0.7217272 1
16737 1.294466 -0.6592475 0.7217272 3
16738 1.294466 -0.6592475 0.7217272 1
16739 1.294466 -0.6592475 0.7217272 3
16740 1.294466 -0.6592475 0.7217272 3
16741 1.294466 -0.6592475 0.7217272 2
16742 1.294466 -0.6592475 0.7217272 3
16743 1.294466 -0.6592475 0.7217272 1
16744 1.294466 -0.6592475 0.7217272 3
16745 1.294466 -0.6592475 0.7217272 2
16746 1.294466 -0.6592475 0.7217272 1
16747 1.294466 -0.6592475 0.7217272 1
16748 1.294466 -0.6592475 0.7217272 1
16749 1.294466 -0.6592475 0.7217272 3
16750 1.294466 -0.6592475 0.7217272 2
16751 1.294466 -0.6592475 0.7217272 1
16752 1.294466 -0.6592475 0.7217272 1
16753 1.294466 -0.6592475 0.7217272 2
16754 1.294466 -0.6592475 0.7217272 1
16755 1.294466 -0.6592475 0.7217272 2
16756 1.294466 -0.6592475 0.7217272 3
16757 1.294466 -0.6592475 0.7217272 1
16758 1.294466 -0.6592475 0.7217272 3
16759 1.294466 -0.6592475 0.7217272 1
16760 1.294466 -0.6592475 0.7217272 1
16761 1.294466 -0.6592475 0.7217272 1
16762 1.294466 -0.6592475 0.7217272 1
16763 1.294466 -0.6592475 0.7217272 3
16764 1.294466 -0.6592475 0.7217272 1
16765 1.294466 -0.6592475 0.7217272 3
16766 1.294466 -0.6592475 0.7217272 3
16767 1.294466 -0.6592475 0.7217272 3
16768 1.294466 -0.6592475 0.7217272 3
16769 1.294466 -0.6592475 0.7217272 1
16770 1.294466 -0.6592475 0.7217272 1
16771 1.294466 -0.6592475 0.7217272 3
16772 1.294466 -0.6592475 0.7217272 3
16773 1.294466 -0.6592475 0.7217272 1
16774 1.294466 -0.6592475 0.7217272 3
16775 1.294466 -0.6592475 0.7217272 2
16776 1.294466 -0.6592475 0.7217272 3
16777 1.294466 -0.6592475 0.7217272 1
16778 1.294466 -0.6592475 0.7217272 1
16779 1.294466 -0.6592475 0.7217272 3
16780 1.294466 -0.6592475 0.7217272 3
16781 1.294466 -0.6592475 0.7217272 1
16782 1.294466 -0.6592475 0.7217272 3
16783 1.294466 -0.6592475 0.7217272 1
16784 1.294466 -0.6592475 0.7217272 1
16785 1.294466 -0.6592475 0.7217272 2
16786 1.294466 -0.6592475 0.7217272 2
16787 1.294466 -0.6592475 0.7217272 1
16788 1.294466 -0.6592475 0.7217272 3
16789 1.294466 -0.6592475 0.7217272 2
16790 1.294466 -0.6592475 0.7217272 2
16791 1.294466 -0.6592475 0.7217272 3
16792 1.294466 -0.6592475 0.7217272 3
16793 1.294466 -0.6592475 0.7217272 1
16794 1.294466 -0.6592475 0.7217272 2
16795 1.294466 -0.6592475 0.7217272 3
16796 1.294466 -0.6592475 0.7217272 3
16797 1.294466 -0.6592475 0.7217272 1
16798 1.294466 -0.6592475 0.7217272 1
16799 1.294466 -0.6592475 0.7217272 3
16800 1.294466 -0.6592475 0.7217272 1
16801 1.294466 -0.6592475 0.7217272 3
16802 1.294466 -0.6592475 0.7217272 1
16803 1.294466 -0.6592475 0.7217272 1
16804 1.294466 -0.6592475 0.7217272 2
16805 1.294466 -0.6592475 0.7217272 1
16806 1.294466 -0.6592475 0.7217272 1
16807 1.294466 -0.6592475 0.7217272 2
16808 1.294466 -0.6592475 0.7217272 1
16809 1.294466 -0.6592475 0.7217272 1
16810 1.294466 -0.6592475 0.7217272 1
16811 1.294466 -0.6592475 0.7217272 2
16812 1.294466 -0.6592475 0.7217272 1
16813 1.294466 -0.6592475 0.7217272 2
16814 1.294466 -0.6592475 0.7217272 2
16815 1.294466 -0.6592475 0.7217272 2
16816 1.294466 -0.6592475 0.7217272 3
16817 1.294466 -0.6592475 0.7217272 3
16818 1.294466 -0.6592475 0.7217272 2
16819 1.294466 -0.6592475 0.7217272 3
16820 1.294466 -0.6592475 0.7217272 2
16821 1.294466 -0.6592475 0.7217272 3
16822 1.294466 -0.6592475 0.7217272 1
16823 1.294466 -0.6592475 0.7217272 1
16824 1.294466 -0.6592475 0.7217272 3
16825 1.294466 -0.6592475 0.7217272 1
16826 1.294466 -0.6592475 0.7217272 1
16827 1.294466 -0.6592475 0.7217272 3
16828 1.294466 -0.6592475 0.7217272 2
16829 1.294466 -0.6592475 0.7217272 1
16830 1.294466 -0.6592475 0.7217272 2
16831 1.294466 -0.6592475 0.7217272 2
16832 1.294466 -0.6592475 0.7217272 2
16833 1.294466 -0.6592475 0.7217272 3
16834 1.294466 -0.6592475 0.7217272 1
16835 1.294466 -0.6592475 0.7217272 1
16836 1.294466 -0.6592475 0.7217272 3
16837 1.294466 -0.6592475 0.7217272 1
16838 1.294466 -0.6592475 0.7217272 2
16839 1.294466 -0.6592475 0.7217272 3
16840 1.294466 -0.6592475 0.7217272 2
16841 1.294466 -0.6592475 0.7217272 1
16842 1.294466 -0.6592475 0.7217272 2
16843 1.294466 -0.6592475 0.7217272 1
16844 1.294466 -0.6592475 0.7217272 3
16845 1.294466 -0.6592475 0.7217272 3
16846 1.294466 -0.6592475 0.7217272 2
16847 1.294466 -0.6592475 0.7217272 1
16848 1.294466 -0.6592475 0.7217272 2
16849 1.294466 -0.6592475 0.7217272 3
16850 1.294466 -0.6592475 0.7217272 3
16851 1.294466 -0.6592475 0.7217272 2
16852 1.294466 -0.6592475 0.7217272 1
16853 1.294466 -0.6592475 0.7217272 2
16854 1.294466 -0.6592475 0.7217272 1
16855 1.294466 -0.6592475 0.7217272 2
16856 1.294466 -0.6592475 0.7217272 1
16857 1.294466 -0.6592475 0.7217272 2
16858 1.294466 -0.6592475 0.7217272 3
16859 1.294466 -0.6592475 0.7217272 3
16860 1.294466 -0.6592475 0.7217272 3
16861 1.294466 -0.6592475 0.7217272 1
16862 1.294466 -0.6592475 0.7217272 3
16863 1.294466 -0.6592475 0.7217272 1
16864 1.294466 -0.6592475 0.7217272 3
16865 1.294466 -0.6592475 0.7217272 2
16866 1.294466 -0.6592475 0.7217272 2
16867 1.294466 -0.6592475 0.7217272 3
16868 1.294466 -0.6592475 0.7217272 1
16869 1.294466 -0.6592475 0.7217272 1
16870 1.294466 -0.6592475 0.7217272 1
16871 1.294466 -0.6592475 0.7217272 3
16872 1.294466 -0.6592475 0.7217272 3
16873 1.294466 -0.6592475 0.7217272 1
16874 1.294466 -0.6592475 0.7217272 2
16875 1.294466 -0.6592475 0.7217272 3
16876 1.294466 -0.6592475 0.7217272 2
16877 1.294466 -0.6592475 0.7217272 3
16878 1.294466 -0.6592475 0.7217272 2
16879 1.294466 -0.6592475 0.7217272 1
16880 1.294466 -0.6592475 0.7217272 3
16881 1.294466 -0.6592475 0.7217272 3
16882 1.294466 -0.6592475 0.7217272 3
16883 1.294466 -0.6592475 0.7217272 1
16884 1.294466 -0.6592475 0.7217272 3
16885 1.294466 -0.6592475 0.7217272 1
16886 1.294466 -0.6592475 0.7217272 3
16887 1.294466 -0.6592475 0.7217272 2
16888 1.294466 -0.6592475 0.7217272 3
16889 1.294466 -0.6592475 0.7217272 1
16890 1.294466 -0.6592475 0.7217272 1
16891 1.294466 -0.6592475 0.7217272 3
16892 1.294466 -0.6592475 0.7217272 2
16893 1.294466 -0.6592475 0.7217272 2
16894 1.294466 -0.6592475 0.7217272 3
16895 1.294466 -0.6592475 0.7217272 1
16896 1.294466 -0.6592475 0.7217272 1
16897 1.294466 -0.6592475 0.7217272 2
16898 1.294466 -0.6592475 0.7217272 1
16899 1.294466 -0.6592475 0.7217272 2
16900 1.294466 -0.6592475 0.7217272 1
16901 1.294466 -0.6592475 0.7217272 3
16902 1.294466 -0.6592475 0.7217272 2
16903 1.294466 -0.6592475 0.7217272 2
16904 1.294466 -0.6592475 0.7217272 2
16905 1.294466 -0.6592475 0.7217272 1
16906 1.294466 -0.6592475 0.7217272 2
16907 1.294466 -0.6592475 0.7217272 1
16908 1.294466 -0.6592475 0.7217272 3
16909 1.294466 -0.6592475 0.7217272 2
16910 1.294466 -0.6592475 0.7217272 3
16911 1.294466 -0.6592475 0.7217272 2
16912 1.294466 -0.6592475 0.7217272 3
16913 1.294466 -0.6592475 0.7217272 2
16914 1.294466 -0.6592475 0.7217272 1
16915 1.294466 -0.6592475 0.7217272 2
16916 1.294466 -0.6592475 0.7217272 3
16917 1.294466 -0.6592475 0.7217272 1
16918 1.294466 -0.6592475 0.7217272 1
16919 1.294466 -0.6592475 0.7217272 2
16920 1.294466 -0.6592475 0.7217272 1
16921 1.294466 -0.6592475 0.7217272 1
16922 1.294466 -0.6592475 0.7217272 3
16923 1.294466 -0.6592475 0.7217272 3
16924 1.294466 -0.6592475 0.7217272 3
16925 1.294466 -0.6592475 0.7217272 2
16926 1.294466 -0.6592475 0.7217272 2
16927 1.294466 -0.6592475 0.7217272 3
16928 1.294466 -0.6592475 0.7217272 1
16929 1.294466 -0.6592475 0.7217272 1
16930 1.294466 -0.6592475 0.7217272 3
16931 1.294466 -0.6592475 0.7217272 2
16932 1.294466 -0.6592475 0.7217272 1
16933 1.294466 -0.6592475 0.7217272 2
16934 1.294466 -0.6592475 0.7217272 3
16935 1.294466 -0.6592475 0.7217272 3
16936 1.294466 -0.6592475 0.7217272 1
16937 1.294466 -0.6592475 0.7217272 3
16938 1.294466 -0.6592475 0.7217272 1
16939 1.294466 -0.6592475 0.7217272 3
16940 1.294466 -0.6592475 0.7217272 2
16941 1.294466 -0.6592475 0.7217272 3
16942 1.294466 -0.6592475 0.7217272 2
16943 1.294466 -0.6592475 0.7217272 2
16944 1.294466 -0.6592475 0.7217272 3
16945 1.294466 -0.6592475 0.7217272 1
16946 1.294466 -0.6592475 0.7217272 3
16947 1.294466 -0.6592475 0.7217272 3
16948 1.294466 -0.6592475 0.7217272 1
16949 1.294466 -0.6592475 0.7217272 2
16950 1.294466 -0.6592475 0.7217272 3
16951 1.294466 -0.6592475 0.7217272 1
16952 1.294466 -0.6592475 0.7217272 3
16953 1.294466 -0.6592475 0.7217272 3
16954 1.294466 -0.6592475 0.7217272 1
16955 1.294466 -0.6592475 0.7217272 1
16956 1.294466 -0.6592475 0.7217272 1
16957 1.294466 -0.6592475 0.7217272 3
16958 1.294466 -0.6592475 0.7217272 3
16959 1.294466 -0.6592475 0.7217272 1
16960 1.294466 -0.6592475 0.7217272 3
16961 1.294466 -0.6592475 0.7217272 3
16962 1.294466 -0.6592475 0.7217272 1
16963 1.294466 -0.6592475 0.7217272 2
16964 1.294466 -0.6592475 0.7217272 1
16965 1.294466 -0.6592475 0.7217272 3
16966 1.294466 -0.6592475 0.7217272 3
16967 1.294466 -0.6592475 0.7217272 1
16968 1.294466 -0.6592475 0.7217272 1
16969 1.294466 -0.6592475 0.7217272 1
16970 1.294466 -0.6592475 0.7217272 2
16971 1.294466 -0.6592475 0.7217272 1
16972 1.294466 -0.6592475 0.7217272 1
16973 1.294466 -0.6592475 0.7217272 3
16974 1.294466 -0.6592475 0.7217272 3
16975 1.294466 -0.6592475 0.7217272 3
16976 1.294466 -0.6592475 0.7217272 3
16977 1.294466 -0.6592475 0.7217272 1
16978 1.294466 -0.6592475 0.7217272 2
16979 1.294466 -0.6592475 0.7217272 1
16980 1.294466 -0.6592475 0.7217272 2
16981 1.294466 -0.6592475 0.7217272 1
16982 1.294466 -0.6592475 0.7217272 1
16983 1.294466 -0.6592475 0.7217272 1
16984 1.294466 -0.6592475 0.7217272 2
16985 1.294466 -0.6592475 0.7217272 3
16986 1.294466 -0.6592475 0.7217272 2
16987 1.294466 -0.6592475 0.7217272 3
16988 1.294466 -0.6592475 0.7217272 3
16989 1.294466 -0.6592475 0.7217272 2
16990 1.294466 -0.6592475 0.7217272 1
16991 1.294466 -0.6592475 0.7217272 1
16992 1.294466 -0.6592475 0.7217272 1
16993 1.294466 -0.6592475 0.7217272 2
16994 1.294466 -0.6592475 0.7217272 2
16995 1.294466 -0.6592475 0.7217272 1
16996 1.294466 -0.6592475 0.7217272 3
16997 1.294466 -0.6592475 0.7217272 2
16998 1.294466 -0.6592475 0.7217272 3
16999 1.294466 -0.6592475 0.7217272 3
17000 1.294466 -0.6592475 0.7217272 1
17001 1.294466 -0.6592475 0.7217272 1
17002 1.294466 -0.6592475 0.7217272 2
17003 1.294466 -0.6592475 0.7217272 1
17004 1.294466 -0.6592475 0.7217272 2
17005 1.294466 -0.6592475 0.7217272 3
17006 1.294466 -0.6592475 0.7217272 1
17007 1.294466 -0.6592475 0.7217272 3
17008 1.294466 -0.6592475 0.7217272 2
17009 1.294466 -0.6592475 0.7217272 2
17010 1.294466 -0.6592475 0.7217272 2
17011 1.294466 -0.6592475 0.7217272 2
17012 1.294466 -0.6592475 0.7217272 2
17013 1.294466 -0.6592475 0.7217272 1
17014 1.294466 -0.6592475 0.7217272 3
17015 1.294466 -0.6592475 0.7217272 2
17016 1.294466 -0.6592475 0.7217272 1
17017 1.294466 -0.6592475 0.7217272 2
17018 1.294466 -0.6592475 0.7217272 2
17019 1.294466 -0.6592475 0.7217272 1
17020 1.294466 -0.6592475 0.7217272 3
17021 1.294466 -0.6592475 0.7217272 3
17022 1.294466 -0.6592475 0.7217272 3
17023 1.294466 -0.6592475 0.7217272 2
17024 1.294466 -0.6592475 0.7217272 3
17025 1.294466 -0.6592475 0.7217272 3
17026 1.294466 -0.6592475 0.7217272 3
17027 1.294466 -0.6592475 0.7217272 3
17028 1.294466 -0.6592475 0.7217272 2
17029 1.294466 -0.6592475 0.7217272 3
17030 1.294466 -0.6592475 0.7217272 1
17031 1.294466 -0.6592475 0.7217272 2
17032 1.294466 -0.6592475 0.7217272 1
17033 1.294466 -0.6592475 0.7217272 2
17034 1.294466 -0.6592475 0.7217272 2
17035 1.294466 -0.6592475 0.7217272 1
17036 1.294466 -0.6592475 0.7217272 1
17037 1.294466 -0.6592475 0.7217272 2
17038 1.294466 -0.6592475 0.7217272 1
17039 1.294466 -0.6592475 0.7217272 2
17040 1.294466 -0.6592475 0.7217272 3
17041 1.294466 -0.6592475 0.7217272 1
17042 1.294466 -0.6592475 0.7217272 3
17043 1.294466 -0.6592475 0.7217272 2
17044 1.294466 -0.6592475 0.7217272 2
17045 1.294466 -0.6592475 0.7217272 2
17046 1.294466 -0.6592475 0.7217272 3
17047 1.294466 -0.6592475 0.7217272 1
17048 1.294466 -0.6592475 0.7217272 1
17049 1.294466 -0.6592475 0.7217272 1
17050 1.294466 -0.6592475 0.7217272 2
17051 1.294466 -0.6592475 0.7217272 3
17052 1.294466 -0.6592475 0.7217272 2
17053 1.294466 -0.6592475 0.7217272 2
17054 1.294466 -0.6592475 0.7217272 2
17055 1.294466 -0.6592475 0.7217272 1
17056 1.294466 -0.6592475 0.7217272 3
17057 1.294466 -0.6592475 0.7217272 2
17058 1.294466 -0.6592475 0.7217272 1
17059 1.294466 -0.6592475 0.7217272 3
17060 1.294466 -0.6592475 0.7217272 2
17061 1.294466 -0.6592475 0.7217272 1
17062 1.294466 -0.6592475 0.7217272 1
17063 1.294466 -0.6592475 0.7217272 3
17064 1.294466 -0.6592475 0.7217272 3
17065 1.294466 -0.6592475 0.7217272 3
17066 1.294466 -0.6592475 0.7217272 1
17067 1.294466 -0.6592475 0.7217272 2
17068 1.294466 -0.6592475 0.7217272 1
17069 1.294466 -0.6592475 0.7217272 3
17070 1.294466 -0.6592475 0.7217272 1
17071 1.294466 -0.6592475 0.7217272 1
17072 1.294466 -0.6592475 0.7217272 2
17073 1.294466 -0.6592475 0.7217272 1
17074 1.294466 -0.6592475 0.7217272 1
17075 1.294466 -0.6592475 0.7217272 3
17076 1.294466 -0.6592475 0.7217272 2
17077 1.294466 -0.6592475 0.7217272 3
17078 1.294466 -0.6592475 0.7217272 2
17079 1.294466 -0.6592475 0.7217272 2
17080 1.294466 -0.6592475 0.7217272 1
17081 1.294466 -0.6592475 0.7217272 1
17082 1.294466 -0.6592475 0.7217272 2
17083 1.294466 -0.6592475 0.7217272 2
17084 1.294466 -0.6592475 0.7217272 1
17085 1.294466 -0.6592475 0.7217272 1
17086 1.294466 -0.6592475 0.7217272 1
17087 1.294466 -0.6592475 0.7217272 3
17088 1.294466 -0.6592475 0.7217272 1
17089 1.294466 -0.6592475 0.7217272 2
17090 1.294466 -0.6592475 0.7217272 3
17091 1.294466 -0.6592475 0.7217272 2
17092 1.294466 -0.6592475 0.7217272 1
17093 1.294466 -0.6592475 0.7217272 3
17094 1.294466 -0.6592475 0.7217272 3
17095 1.294466 -0.6592475 0.7217272 2
17096 1.294466 -0.6592475 0.7217272 3
17097 1.294466 -0.6592475 0.7217272 3
17098 1.294466 -0.6592475 0.7217272 3
17099 1.294466 -0.6592475 0.7217272 3
17100 1.294466 -0.6592475 0.7217272 1
17101 1.294466 -0.6592475 0.7217272 1
17102 1.294466 -0.6592475 0.7217272 3
17103 1.294466 -0.6592475 0.7217272 2
17104 1.294466 -0.6592475 0.7217272 1
17105 1.294466 -0.6592475 0.7217272 2
17106 1.294466 -0.6592475 0.7217272 2
17107 1.294466 -0.6592475 0.7217272 2
17108 1.294466 -0.6592475 0.7217272 1
17109 1.294466 -0.6592475 0.7217272 1
17110 1.294466 -0.6592475 0.7217272 2
17111 1.294466 -0.6592475 0.7217272 3
17112 1.294466 -0.6592475 0.7217272 2
17113 1.294466 -0.6592475 0.7217272 1
17114 1.294466 -0.6592475 0.7217272 1
17115 1.294466 -0.6592475 0.7217272 3
17116 1.294466 -0.6592475 0.7217272 1
17117 1.294466 -0.6592475 0.7217272 1
17118 1.294466 -0.6592475 0.7217272 2
17119 1.294466 -0.6592475 0.7217272 2
17120 1.294466 -0.6592475 0.7217272 2
17121 1.294466 -0.6592475 0.7217272 3
17122 1.294466 -0.6592475 0.7217272 1
17123 1.294466 -0.6592475 0.7217272 1
17124 1.294466 -0.6592475 0.7217272 1
17125 1.294466 -0.6592475 0.7217272 1
17126 1.294466 -0.6592475 0.7217272 2
17127 1.294466 -0.6592475 0.7217272 2
17128 1.294466 -0.6592475 0.7217272 1
17129 1.294466 -0.6592475 0.7217272 2
17130 1.294466 -0.6592475 0.7217272 3
17131 1.294466 -0.6592475 0.7217272 3
17132 1.294466 -0.6592475 0.7217272 1
17133 1.294466 -0.6592475 0.7217272 1
17134 1.294466 -0.6592475 0.7217272 2
17135 1.294466 -0.6592475 0.7217272 3
17136 1.294466 -0.6592475 0.7217272 1
17137 1.294466 -0.6592475 0.7217272 2
17138 1.294466 -0.6592475 0.7217272 1
17139 1.294466 -0.6592475 0.7217272 2
17140 1.294466 -0.6592475 0.7217272 2
17141 1.294466 -0.6592475 0.7217272 2
17142 1.294466 -0.6592475 0.7217272 2
17143 1.294466 -0.6592475 0.7217272 1
17144 1.294466 -0.6592475 0.7217272 1
17145 1.294466 -0.6592475 0.7217272 2
17146 1.294466 -0.6592475 0.7217272 1
17147 1.294466 -0.6592475 0.7217272 2
17148 1.294466 -0.6592475 0.7217272 1
17149 1.294466 -0.6592475 0.7217272 3
17150 1.294466 -0.6592475 0.7217272 1
17151 1.294466 -0.6592475 0.7217272 2
17152 1.294466 -0.6592475 0.7217272 3
17153 1.294466 -0.6592475 0.7217272 1
17154 1.294466 -0.6592475 0.7217272 3
17155 1.294466 -0.6592475 0.7217272 1
17156 1.294466 -0.6592475 0.7217272 2
17157 1.294466 -0.6592475 0.7217272 3
17158 1.294466 -0.6592475 0.7217272 1
17159 1.294466 -0.6592475 0.7217272 1
17160 1.294466 -0.6592475 0.7217272 1
17161 1.294466 -0.6592475 0.7217272 2
17162 1.294466 -0.6592475 0.7217272 1
17163 1.294466 -0.6592475 0.7217272 3
17164 1.294466 -0.6592475 0.7217272 2
17165 1.294466 -0.6592475 0.7217272 3
17166 1.294466 -0.6592475 0.7217272 2
17167 1.294466 -0.6592475 0.7217272 1
17168 1.294466 -0.6592475 0.7217272 3
17169 1.294466 -0.6592475 0.7217272 2
17170 1.294466 -0.6592475 0.7217272 3
17171 1.294466 -0.6592475 0.7217272 2
17172 1.294466 -0.6592475 0.7217272 2
17173 1.294466 -0.6592475 0.7217272 3
17174 1.294466 -0.6592475 0.7217272 3
17175 1.294466 -0.6592475 0.7217272 2
17176 1.294466 -0.6592475 0.7217272 2
17177 1.294466 -0.6592475 0.7217272 2
17178 1.294466 -0.6592475 0.7217272 2
17179 1.294466 -0.6592475 0.7217272 2
17180 1.294466 -0.6592475 0.7217272 1
17181 1.294466 -0.6592475 0.7217272 2
17182 1.294466 -0.6592475 0.7217272 1
17183 1.294466 -0.6592475 0.7217272 3
17184 1.294466 -0.6592475 0.7217272 3
17185 1.294466 -0.6592475 0.7217272 1
17186 1.294466 -0.6592475 0.7217272 3
17187 1.294466 -0.6592475 0.7217272 3
17188 1.294466 -0.6592475 0.7217272 2
17189 1.294466 -0.6592475 0.7217272 1
17190 1.294466 -0.6592475 0.7217272 3
17191 1.294466 -0.6592475 0.7217272 1
17192 1.294466 -0.6592475 0.7217272 3
17193 1.294466 -0.6592475 0.7217272 2
17194 1.294466 -0.6592475 0.7217272 1
17195 1.294466 -0.6592475 0.7217272 3
17196 1.294466 -0.6592475 0.7217272 1
17197 1.294466 -0.6592475 0.7217272 2
17198 1.294466 -0.6592475 0.7217272 1
17199 1.294466 -0.6592475 0.7217272 1
17200 1.294466 -0.6592475 0.7217272 2
17201 1.294466 -0.6592475 0.7217272 2
17202 1.294466 -0.6592475 0.7217272 3
17203 1.294466 -0.6592475 0.7217272 2
17204 1.294466 -0.6592475 0.7217272 3
17205 1.294466 -0.6592475 0.7217272 1
17206 1.294466 -0.6592475 0.7217272 3
17207 1.294466 -0.6592475 0.7217272 3
17208 1.294466 -0.6592475 0.7217272 3
17209 1.294466 -0.6592475 0.7217272 1
17210 1.294466 -0.6592475 0.7217272 3
17211 1.294466 -0.6592475 0.7217272 2
17212 1.294466 -0.6592475 0.7217272 1
17213 1.294466 -0.6592475 0.7217272 3
17214 1.294466 -0.6592475 0.7217272 1
17215 1.294466 -0.6592475 0.7217272 1
17216 1.294466 -0.6592475 0.7217272 3
17217 1.294466 -0.6592475 0.7217272 1
17218 1.294466 -0.6592475 0.7217272 3
17219 1.294466 -0.6592475 0.7217272 1
17220 1.294466 -0.6592475 0.7217272 1
17221 1.294466 -0.6592475 0.7217272 1
17222 1.294466 -0.6592475 0.7217272 3
17223 1.294466 -0.6592475 0.7217272 1
17224 1.294466 -0.6592475 0.7217272 1
17225 1.294466 -0.6592475 0.7217272 3
17226 1.294466 -0.6592475 0.7217272 3
17227 1.294466 -0.6592475 0.7217272 3
17228 1.294466 -0.6592475 0.7217272 1
17229 1.294466 -0.6592475 0.7217272 1
17230 1.294466 -0.6592475 0.7217272 1
17231 1.294466 -0.6592475 0.7217272 1
17232 1.294466 -0.6592475 0.7217272 2
17233 1.294466 -0.6592475 0.7217272 2
17234 1.294466 -0.6592475 0.7217272 3
17235 1.294466 -0.6592475 0.7217272 1
17236 1.294466 -0.6592475 0.7217272 2
17237 1.294466 -0.6592475 0.7217272 2
17238 1.294466 -0.6592475 0.7217272 3
17239 1.294466 -0.6592475 0.7217272 3
17240 1.294466 -0.6592475 0.7217272 1
17241 1.294466 -0.6592475 0.7217272 3
17242 1.294466 -0.6592475 0.7217272 1
17243 1.294466 -0.6592475 0.7217272 3
17244 1.294466 -0.6592475 0.7217272 3
17245 1.294466 -0.6592475 0.7217272 1
17246 1.294466 -0.6592475 0.7217272 1
17247 1.294466 -0.6592475 0.7217272 2
17248 1.294466 -0.6592475 0.7217272 1
17249 1.294466 -0.6592475 0.7217272 1
17250 1.294466 -0.6592475 0.7217272 3
17251 1.294466 -0.6592475 0.7217272 2
17252 1.294466 -0.6592475 0.7217272 3
17253 1.294466 -0.6592475 0.7217272 2
17254 1.294466 -0.6592475 0.7217272 1
17255 1.294466 -0.6592475 0.7217272 3
17256 1.294466 -0.6592475 0.7217272 1
17257 1.294466 -0.6592475 0.7217272 2
17258 1.294466 -0.6592475 0.7217272 1
17259 1.294466 -0.6592475 0.7217272 3
17260 1.294466 -0.6592475 0.7217272 3
17261 1.294466 -0.6592475 0.7217272 3
17262 1.294466 -0.6592475 0.7217272 2
17263 1.294466 -0.6592475 0.7217272 1
17264 1.294466 -0.6592475 0.7217272 1
17265 1.294466 -0.6592475 0.7217272 2
17266 1.294466 -0.6592475 0.7217272 3
17267 1.294466 -0.6592475 0.7217272 3
17268 1.294466 -0.6592475 0.7217272 2
17269 1.294466 -0.6592475 0.7217272 3
17270 1.294466 -0.6592475 0.7217272 1
17271 1.294466 -0.6592475 0.7217272 1
17272 1.294466 -0.6592475 0.7217272 1
17273 1.294466 -0.6592475 0.7217272 2
17274 1.294466 -0.6592475 0.7217272 3
17275 1.294466 -0.6592475 0.7217272 1
17276 1.294466 -0.6592475 0.7217272 1
17277 1.294466 -0.6592475 0.7217272 1
17278 1.294466 -0.6592475 0.7217272 3
17279 1.294466 -0.6592475 0.7217272 2
17280 1.294466 -0.6592475 0.7217272 3
17281 1.294466 -0.6592475 0.7217272 1
17282 1.294466 -0.6592475 0.7217272 3
17283 1.294466 -0.6592475 0.7217272 3
17284 1.294466 -0.6592475 0.7217272 1
17285 1.294466 -0.6592475 0.7217272 2
17286 1.294466 -0.6592475 0.7217272 3
17287 1.294466 -0.6592475 0.7217272 3
17288 1.294466 -0.6592475 0.7217272 3
17289 1.294466 -0.6592475 0.7217272 1
17290 1.294466 -0.6592475 0.7217272 1
17291 1.294466 -0.6592475 0.7217272 3
17292 1.294466 -0.6592475 0.7217272 1
17293 1.294466 -0.6592475 0.7217272 3
17294 1.294466 -0.6592475 0.7217272 1
17295 1.294466 -0.6592475 0.7217272 3
17296 1.294466 -0.6592475 0.7217272 3
17297 1.294466 -0.6592475 0.7217272 2
17298 1.294466 -0.6592475 0.7217272 3
17299 1.294466 -0.6592475 0.7217272 3
17300 1.294466 -0.6592475 0.7217272 2
17301 1.294466 -0.6592475 0.7217272 1
17302 1.294466 -0.6592475 0.7217272 3
17303 1.294466 -0.6592475 0.7217272 2
17304 1.294466 -0.6592475 0.7217272 2
17305 1.294466 -0.6592475 0.7217272 1
17306 1.294466 -0.6592475 0.7217272 2
17307 1.294466 -0.6592475 0.7217272 2
17308 1.294466 -0.6592475 0.7217272 1
17309 1.294466 -0.6592475 0.7217272 2
17310 1.294466 -0.6592475 0.7217272 3
17311 1.294466 -0.6592475 0.7217272 3
17312 1.294466 -0.6592475 0.7217272 1
17313 1.294466 -0.6592475 0.7217272 1
17314 1.294466 -0.6592475 0.7217272 1
17315 1.294466 -0.6592475 0.7217272 3
17316 1.294466 -0.6592475 0.7217272 3
17317 1.294466 -0.6592475 0.7217272 1
17318 1.294466 -0.6592475 0.7217272 1
17319 1.294466 -0.6592475 0.7217272 1
17320 1.294466 -0.6592475 0.7217272 2
17321 1.294466 -0.6592475 0.7217272 2
17322 1.294466 -0.6592475 0.7217272 1
17323 1.294466 -0.6592475 0.7217272 1
17324 1.294466 -0.6592475 0.7217272 1
17325 1.294466 -0.6592475 0.7217272 3
17326 1.294466 -0.6592475 0.7217272 2
17327 1.294466 -0.6592475 0.7217272 1
17328 1.294466 -0.6592475 0.7217272 1
17329 1.294466 -0.6592475 0.7217272 2
17330 1.294466 -0.6592475 0.7217272 2
17331 1.294466 -0.6592475 0.7217272 3
17332 1.294466 -0.6592475 0.7217272 1
17333 1.294466 -0.6592475 0.7217272 2
17334 1.294466 -0.6592475 0.7217272 1
17335 1.294466 -0.6592475 0.7217272 3
17336 1.294466 -0.6592475 0.7217272 2
17337 1.294466 -0.6592475 0.7217272 2
17338 1.294466 -0.6592475 0.7217272 2
17339 1.294466 -0.6592475 0.7217272 1
17340 1.294466 -0.6592475 0.7217272 1
17341 1.294466 -0.6592475 0.7217272 1
17342 1.294466 -0.6592475 0.7217272 2
17343 1.294466 -0.6592475 0.7217272 3
17344 1.294466 -0.6592475 0.7217272 3
17345 1.294466 -0.6592475 0.7217272 2
17346 1.294466 -0.6592475 0.7217272 2
17347 1.294466 -0.6592475 0.7217272 1
17348 1.294466 -0.6592475 0.7217272 2
17349 1.294466 -0.6592475 0.7217272 2
17350 1.294466 -0.6592475 0.7217272 2
17351 1.294466 -0.6592475 0.7217272 3
17352 1.294466 -0.6592475 0.7217272 1
17353 1.294466 -0.6592475 0.7217272 3
17354 1.294466 -0.6592475 0.7217272 3
17355 1.294466 -0.6592475 0.7217272 1
17356 1.294466 -0.6592475 0.7217272 1
17357 1.294466 -0.6592475 0.7217272 3
17358 1.294466 -0.6592475 0.7217272 1
17359 1.294466 -0.6592475 0.7217272 1
17360 1.294466 -0.6592475 0.7217272 2
17361 1.294466 -0.6592475 0.7217272 2
17362 1.294466 -0.6592475 0.7217272 2
17363 1.294466 -0.6592475 0.7217272 1
17364 1.294466 -0.6592475 0.7217272 2
17365 1.294466 -0.6592475 0.7217272 3
17366 1.294466 -0.6592475 0.7217272 3
17367 1.294466 -0.6592475 0.7217272 3
17368 1.294466 -0.6592475 0.7217272 2
17369 1.294466 -0.6592475 0.7217272 2
17370 1.294466 -0.6592475 0.7217272 3
17371 1.294466 -0.6592475 0.7217272 3
17372 1.294466 -0.6592475 0.7217272 2
17373 1.294466 -0.6592475 0.7217272 1
17374 1.294466 -0.6592475 0.7217272 3
17375 1.294466 -0.6592475 0.7217272 1
17376 1.294466 -0.6592475 0.7217272 2
17377 1.294466 -0.6592475 0.7217272 3
17378 1.294466 -0.6592475 0.7217272 1
17379 1.294466 -0.6592475 0.7217272 2
17380 1.294466 -0.6592475 0.7217272 1
17381 1.294466 -0.6592475 0.7217272 2
17382 1.294466 -0.6592475 0.7217272 2
17383 1.294466 -0.6592475 0.7217272 1
17384 1.294466 -0.6592475 0.7217272 3
17385 1.294466 -0.6592475 0.7217272 2
17386 1.294466 -0.6592475 0.7217272 1
17387 1.294466 -0.6592475 0.7217272 2
17388 1.294466 -0.6592475 0.7217272 3
17389 1.294466 -0.6592475 0.7217272 1
17390 1.294466 -0.6592475 0.7217272 2
17391 1.294466 -0.6592475 0.7217272 1
17392 1.294466 -0.6592475 0.7217272 1
17393 1.294466 -0.6592475 0.7217272 1
17394 1.294466 -0.6592475 0.7217272 1
17395 1.294466 -0.6592475 0.7217272 1
17396 1.294466 -0.6592475 0.7217272 3
17397 1.294466 -0.6592475 0.7217272 3
17398 1.294466 -0.6592475 0.7217272 1
17399 1.294466 -0.6592475 0.7217272 1
17400 1.294466 -0.6592475 0.7217272 2
17401 1.294466 -0.6592475 0.7217272 1
17402 1.294466 -0.6592475 0.7217272 1
17403 1.294466 -0.6592475 0.7217272 2
17404 1.294466 -0.6592475 0.7217272 1
17405 1.294466 -0.6592475 0.7217272 1
17406 1.294466 -0.6592475 0.7217272 2
17407 1.294466 -0.6592475 0.7217272 1
17408 1.294466 -0.6592475 0.7217272 1
17409 1.294466 -0.6592475 0.7217272 3
17410 1.294466 -0.6592475 0.7217272 2
17411 1.294466 -0.6592475 0.7217272 1
17412 1.294466 -0.6592475 0.7217272 2
17413 1.294466 -0.6592475 0.7217272 2
17414 1.294466 -0.6592475 0.7217272 3
17415 1.294466 -0.6592475 0.7217272 2
17416 1.294466 -0.6592475 0.7217272 3
17417 1.294466 -0.6592475 0.7217272 2
17418 1.294466 -0.6592475 0.7217272 1
17419 1.294466 -0.6592475 0.7217272 3
17420 1.294466 -0.6592475 0.7217272 2
17421 1.294466 -0.6592475 0.7217272 1
17422 1.294466 -0.6592475 0.7217272 2
17423 1.294466 -0.6592475 0.7217272 1
17424 1.294466 -0.6592475 0.7217272 2
17425 1.294466 -0.6592475 0.7217272 2
17426 1.294466 -0.6592475 0.7217272 2
17427 1.294466 -0.6592475 0.7217272 2
17428 1.294466 -0.6592475 0.7217272 2
17429 1.294466 -0.6592475 0.7217272 3
17430 1.294466 -0.6592475 0.7217272 3
17431 1.294466 -0.6592475 0.7217272 1
17432 1.294466 -0.6592475 0.7217272 2
17433 1.294466 -0.6592475 0.7217272 1
17434 1.294466 -0.6592475 0.7217272 2
17435 1.294466 -0.6592475 0.7217272 1
17436 1.294466 -0.6592475 0.7217272 2
17437 1.294466 -0.6592475 0.7217272 2
17438 1.294466 -0.6592475 0.7217272 3
17439 1.294466 -0.6592475 0.7217272 3
17440 1.294466 -0.6592475 0.7217272 3
17441 1.294466 -0.6592475 0.7217272 2
17442 1.294466 -0.6592475 0.7217272 2
17443 1.294466 -0.6592475 0.7217272 3
17444 1.294466 -0.6592475 0.7217272 1
17445 1.294466 -0.6592475 0.7217272 2
17446 1.294466 -0.6592475 0.7217272 1
17447 1.294466 -0.6592475 0.7217272 1
17448 1.294466 -0.6592475 0.7217272 2
17449 1.294466 -0.6592475 0.7217272 3
17450 1.294466 -0.6592475 0.7217272 1
17451 1.294466 -0.6592475 0.7217272 3
17452 1.294466 -0.6592475 0.7217272 2
17453 1.294466 -0.6592475 0.7217272 3
17454 1.294466 -0.6592475 0.7217272 3
17455 1.294466 -0.6592475 0.7217272 3
17456 1.294466 -0.6592475 0.7217272 1
17457 1.294466 -0.6592475 0.7217272 2
17458 1.294466 -0.6592475 0.7217272 1
17459 1.294466 -0.6592475 0.7217272 2
17460 1.294466 -0.6592475 0.7217272 1
17461 1.294466 -0.6592475 0.7217272 3
17462 1.295512 -0.6736084 0.7212542 1
17463 1.295512 -0.6736084 0.7212542 1
17464 1.295512 -0.6736084 0.7212542 3
17465 1.295512 -0.6736084 0.7212542 2
17466 1.295512 -0.6736084 0.7212542 2
17467 1.295512 -0.6736084 0.7212542 1
17468 1.295512 -0.6736084 0.7212542 3
17469 1.295512 -0.6736084 0.7212542 1
17470 1.295512 -0.6736084 0.7212542 3
17471 1.295512 -0.6736084 0.7212542 3
17472 1.295512 -0.6736084 0.7212542 1
17473 1.295512 -0.6736084 0.7212542 1
17474 1.295512 -0.6736084 0.7212542 1
17475 1.295512 -0.6736084 0.7212542 1
17476 1.295512 -0.6736084 0.7212542 2
17477 1.295512 -0.6736084 0.7212542 3
17478 1.295512 -0.6736084 0.7212542 3
17479 1.295512 -0.6736084 0.7212542 2
17480 1.295512 -0.6736084 0.7212542 2
17481 1.295512 -0.6736084 0.7212542 2
17482 1.295512 -0.6736084 0.7212542 1
17483 1.295512 -0.6736084 0.7212542 2
17484 1.295512 -0.6736084 0.7212542 2
17485 1.295512 -0.6736084 0.7212542 3
17486 1.295512 -0.6736084 0.7212542 1
17487 1.295512 -0.6736084 0.7212542 3
17488 1.295512 -0.6736084 0.7212542 3
17489 1.295512 -0.6736084 0.7212542 3
17490 1.295512 -0.6736084 0.7212542 2
17491 1.295512 -0.6736084 0.7212542 3
17492 1.295512 -0.6736084 0.7212542 2
17493 1.295512 -0.6736084 0.7212542 3
17494 1.295512 -0.6736084 0.7212542 3
17495 1.295512 -0.6736084 0.7212542 1
17496 1.295512 -0.6736084 0.7212542 1
17497 1.295512 -0.6736084 0.7212542 3
17498 1.295512 -0.6736084 0.7212542 1
17499 1.295512 -0.6736084 0.7212542 2
17500 1.295512 -0.6736084 0.7212542 3
17501 1.295512 -0.6736084 0.7212542 2
17502 1.295512 -0.6736084 0.7212542 2
17503 1.295512 -0.6736084 0.7212542 2
17504 1.295512 -0.6736084 0.7212542 1
17505 1.295512 -0.6736084 0.7212542 3
17506 1.295512 -0.6736084 0.7212542 3
17507 1.295512 -0.6736084 0.7212542 1
17508 1.295512 -0.6736084 0.7212542 1
17509 1.295512 -0.6736084 0.7212542 1
17510 1.295512 -0.6736084 0.7212542 2
17511 1.295512 -0.6736084 0.7212542 3
17512 1.295512 -0.6736084 0.7212542 3
17513 1.295512 -0.6736084 0.7212542 3
17514 1.295512 -0.6736084 0.7212542 1
17515 1.295512 -0.6736084 0.7212542 1
17516 1.295512 -0.6736084 0.7212542 2
17517 1.295512 -0.6736084 0.7212542 1
17518 1.295512 -0.6736084 0.7212542 3
17519 1.295512 -0.6736084 0.7212542 3
17520 1.295512 -0.6736084 0.7212542 2
17521 1.295512 -0.6736084 0.7212542 1
17522 1.295512 -0.6736084 0.7212542 1
17523 1.295512 -0.6736084 0.7212542 3
17524 1.295512 -0.6736084 0.7212542 1
17525 1.295512 -0.6736084 0.7212542 1
17526 1.295512 -0.6736084 0.7212542 1
17527 1.295512 -0.6736084 0.7212542 3
17528 1.295512 -0.6736084 0.7212542 1
17529 1.295512 -0.6736084 0.7212542 2
17530 1.295512 -0.6736084 0.7212542 2
17531 1.295512 -0.6736084 0.7212542 3
17532 1.295512 -0.6736084 0.7212542 2
17533 1.295512 -0.6736084 0.7212542 1
17534 1.295512 -0.6736084 0.7212542 2
17535 1.295512 -0.6736084 0.7212542 1
17536 1.295512 -0.6736084 0.7212542 3
17537 1.295512 -0.6736084 0.7212542 2
17538 1.295512 -0.6736084 0.7212542 3
17539 1.295512 -0.6736084 0.7212542 3
17540 1.295512 -0.6736084 0.7212542 2
17541 1.295512 -0.6736084 0.7212542 1
17542 1.295512 -0.6736084 0.7212542 2
17543 1.295512 -0.6736084 0.7212542 2
17544 1.295512 -0.6736084 0.7212542 3
17545 1.295512 -0.6736084 0.7212542 3
17546 1.295512 -0.6736084 0.7212542 2
17547 1.295512 -0.6736084 0.7212542 1
17548 1.295512 -0.6736084 0.7212542 1
17549 1.295512 -0.6736084 0.7212542 3
17550 1.295512 -0.6736084 0.7212542 1
17551 1.295512 -0.6736084 0.7212542 2
17552 1.295512 -0.6736084 0.7212542 2
17553 1.295512 -0.6736084 0.7212542 3
17554 1.295512 -0.6736084 0.7212542 1
17555 1.295512 -0.6736084 0.7212542 1
17556 1.295512 -0.6736084 0.7212542 2
17557 1.295512 -0.6736084 0.7212542 3
17558 1.295512 -0.6736084 0.7212542 3
17559 1.295512 -0.6736084 0.7212542 3
17560 1.295512 -0.6736084 0.7212542 2
17561 1.295512 -0.6736084 0.7212542 2
17562 1.295512 -0.6736084 0.7212542 1
17563 1.295512 -0.6736084 0.7212542 1
17564 1.295512 -0.6736084 0.7212542 1
17565 1.295512 -0.6736084 0.7212542 3
17566 1.295512 -0.6736084 0.7212542 1
17567 1.295512 -0.6736084 0.7212542 2
17568 1.295512 -0.6736084 0.7212542 1
17569 1.295512 -0.6736084 0.7212542 2
17570 1.295512 -0.6736084 0.7212542 1
17571 1.295512 -0.6736084 0.7212542 2
17572 1.295512 -0.6736084 0.7212542 2
17573 1.295512 -0.6736084 0.7212542 2
17574 1.295512 -0.6736084 0.7212542 3
17575 1.295512 -0.6736084 0.7212542 3
17576 1.295512 -0.6736084 0.7212542 1
17577 1.295512 -0.6736084 0.7212542 2
17578 1.295512 -0.6736084 0.7212542 3
17579 1.295512 -0.6736084 0.7212542 2
17580 1.295512 -0.6736084 0.7212542 1
17581 1.295512 -0.6736084 0.7212542 3
17582 1.295512 -0.6736084 0.7212542 1
17583 1.295512 -0.6736084 0.7212542 2
17584 1.295512 -0.6736084 0.7212542 1
17585 1.295512 -0.6736084 0.7212542 3
17586 1.295512 -0.6736084 0.7212542 1
17587 1.295512 -0.6736084 0.7212542 2
17588 1.295512 -0.6736084 0.7212542 3
17589 1.295512 -0.6736084 0.7212542 3
17590 1.295512 -0.6736084 0.7212542 3
17591 1.295512 -0.6736084 0.7212542 1
17592 1.295512 -0.6736084 0.7212542 2
17593 1.295512 -0.6736084 0.7212542 1
17594 1.295512 -0.6736084 0.7212542 3
17595 1.295512 -0.6736084 0.7212542 3
17596 1.295512 -0.6736084 0.7212542 3
17597 1.295512 -0.6736084 0.7212542 1
17598 1.295512 -0.6736084 0.7212542 3
17599 1.295512 -0.6736084 0.7212542 1
17600 1.295512 -0.6736084 0.7212542 1
17601 1.295512 -0.6736084 0.7212542 2
17602 1.295512 -0.6736084 0.7212542 2
17603 1.295512 -0.6736084 0.7212542 3
17604 1.295512 -0.6736084 0.7212542 3
17605 1.295512 -0.6736084 0.7212542 3
17606 1.295512 -0.6736084 0.7212542 2
17607 1.295512 -0.6736084 0.7212542 3
17608 1.295512 -0.6736084 0.7212542 2
17609 1.295512 -0.6736084 0.7212542 1
17610 1.295512 -0.6736084 0.7212542 2
17611 1.295512 -0.6736084 0.7212542 3
17612 1.295512 -0.6736084 0.7212542 2
17613 1.295512 -0.6736084 0.7212542 1
17614 1.295512 -0.6736084 0.7212542 3
17615 1.295512 -0.6736084 0.7212542 1
17616 1.295512 -0.6736084 0.7212542 2
17617 1.295512 -0.6736084 0.7212542 1
17618 1.295512 -0.6736084 0.7212542 2
17619 1.295512 -0.6736084 0.7212542 1
17620 1.295512 -0.6736084 0.7212542 1
17621 1.295512 -0.6736084 0.7212542 1
17622 1.295512 -0.6736084 0.7212542 1
17623 1.295512 -0.6736084 0.7212542 1
17624 1.295512 -0.6736084 0.7212542 3
17625 1.295512 -0.6736084 0.7212542 3
17626 1.295512 -0.6736084 0.7212542 1
17627 1.295512 -0.6736084 0.7212542 2
17628 1.295512 -0.6736084 0.7212542 2
17629 1.295512 -0.6736084 0.7212542 1
17630 1.295512 -0.6736084 0.7212542 3
17631 1.295512 -0.6736084 0.7212542 2
17632 1.295512 -0.6736084 0.7212542 3
17633 1.295512 -0.6736084 0.7212542 1
17634 1.295512 -0.6736084 0.7212542 2
17635 1.295512 -0.6736084 0.7212542 3
17636 1.295512 -0.6736084 0.7212542 1
17637 1.295512 -0.6736084 0.7212542 3
17638 1.295512 -0.6736084 0.7212542 1
17639 1.295512 -0.6736084 0.7212542 2
17640 1.295512 -0.6736084 0.7212542 1
17641 1.295512 -0.6736084 0.7212542 2
17642 1.295512 -0.6736084 0.7212542 1
17643 1.295512 -0.6736084 0.7212542 1
17644 1.295512 -0.6736084 0.7212542 1
17645 1.295512 -0.6736084 0.7212542 1
17646 1.295512 -0.6736084 0.7212542 3
17647 1.295512 -0.6736084 0.7212542 2
17648 1.295512 -0.6736084 0.7212542 1
17649 1.295512 -0.6736084 0.7212542 2
17650 1.295512 -0.6736084 0.7212542 3
17651 1.295512 -0.6736084 0.7212542 1
17652 1.295512 -0.6736084 0.7212542 3
17653 1.295512 -0.6736084 0.7212542 1
17654 1.295512 -0.6736084 0.7212542 1
17655 1.295512 -0.6736084 0.7212542 2
17656 1.295512 -0.6736084 0.7212542 3
17657 1.295512 -0.6736084 0.7212542 3
17658 1.295512 -0.6736084 0.7212542 2
17659 1.295512 -0.6736084 0.7212542 2
17660 1.295512 -0.6736084 0.7212542 1
17661 1.295512 -0.6736084 0.7212542 3
17662 1.295512 -0.6736084 0.7212542 1
17663 1.295512 -0.6736084 0.7212542 2
17664 1.295512 -0.6736084 0.7212542 1
17665 1.295512 -0.6736084 0.7212542 2
17666 1.295512 -0.6736084 0.7212542 3
17667 1.295512 -0.6736084 0.7212542 1
17668 1.295512 -0.6736084 0.7212542 3
17669 1.295512 -0.6736084 0.7212542 1
17670 1.295512 -0.6736084 0.7212542 2
17671 1.295512 -0.6736084 0.7212542 2
17672 1.295512 -0.6736084 0.7212542 3
17673 1.295512 -0.6736084 0.7212542 1
17674 1.295512 -0.6736084 0.7212542 2
17675 1.295512 -0.6736084 0.7212542 3
17676 1.295512 -0.6736084 0.7212542 3
17677 1.295512 -0.6736084 0.7212542 3
17678 1.295512 -0.6736084 0.7212542 2
17679 1.295512 -0.6736084 0.7212542 3
17680 1.295512 -0.6736084 0.7212542 3
17681 1.295512 -0.6736084 0.7212542 3
17682 1.295512 -0.6736084 0.7212542 3
17683 1.295512 -0.6736084 0.7212542 1
17684 1.295512 -0.6736084 0.7212542 1
17685 1.295512 -0.6736084 0.7212542 1
17686 1.295512 -0.6736084 0.7212542 2
17687 1.295512 -0.6736084 0.7212542 1
17688 1.295512 -0.6736084 0.7212542 3
17689 1.295512 -0.6736084 0.7212542 3
17690 1.295512 -0.6736084 0.7212542 1
17691 1.295512 -0.6736084 0.7212542 1
17692 1.295512 -0.6736084 0.7212542 2
17693 1.295512 -0.6736084 0.7212542 1
17694 1.295512 -0.6736084 0.7212542 2
17695 1.295512 -0.6736084 0.7212542 1
17696 1.295512 -0.6736084 0.7212542 1
17697 1.295512 -0.6736084 0.7212542 2
17698 1.295512 -0.6736084 0.7212542 1
17699 1.295512 -0.6736084 0.7212542 3
17700 1.295512 -0.6736084 0.7212542 2
17701 1.295512 -0.6736084 0.7212542 3
17702 1.295512 -0.6736084 0.7212542 3
17703 1.295512 -0.6736084 0.7212542 1
17704 1.295512 -0.6736084 0.7212542 3
17705 1.295512 -0.6736084 0.7212542 1
17706 1.295512 -0.6736084 0.7212542 3
17707 1.295512 -0.6736084 0.7212542 2
17708 1.295512 -0.6736084 0.7212542 2
17709 1.295512 -0.6736084 0.7212542 3
17710 1.295512 -0.6736084 0.7212542 2
17711 1.295512 -0.6736084 0.7212542 3
17712 1.295512 -0.6736084 0.7212542 2
17713 1.295512 -0.6736084 0.7212542 3
17714 1.295512 -0.6736084 0.7212542 1
17715 1.295512 -0.6736084 0.7212542 3
17716 1.295512 -0.6736084 0.7212542 2
17717 1.295512 -0.6736084 0.7212542 2
17718 1.295512 -0.6736084 0.7212542 1
17719 1.295512 -0.6736084 0.7212542 2
17720 1.295512 -0.6736084 0.7212542 3
17721 1.295512 -0.6736084 0.7212542 1
17722 1.295512 -0.6736084 0.7212542 2
17723 1.295512 -0.6736084 0.7212542 1
17724 1.295512 -0.6736084 0.7212542 3
17725 1.295512 -0.6736084 0.7212542 3
17726 1.295512 -0.6736084 0.7212542 1
17727 1.295512 -0.6736084 0.7212542 3
17728 1.295512 -0.6736084 0.7212542 2
17729 1.295512 -0.6736084 0.7212542 3
17730 1.295512 -0.6736084 0.7212542 3
17731 1.295512 -0.6736084 0.7212542 3
17732 1.295512 -0.6736084 0.7212542 1
17733 1.295512 -0.6736084 0.7212542 1
17734 1.295512 -0.6736084 0.7212542 3
17735 1.295512 -0.6736084 0.7212542 1
17736 1.295512 -0.6736084 0.7212542 3
17737 1.295512 -0.6736084 0.7212542 2
17738 1.295512 -0.6736084 0.7212542 3
17739 1.295512 -0.6736084 0.7212542 1
17740 1.295512 -0.6736084 0.7212542 2
17741 1.295512 -0.6736084 0.7212542 2
17742 1.295512 -0.6736084 0.7212542 3
17743 1.295512 -0.6736084 0.7212542 1
17744 1.295512 -0.6736084 0.7212542 3
17745 1.295512 -0.6736084 0.7212542 2
17746 1.295512 -0.6736084 0.7212542 2
17747 1.295512 -0.6736084 0.7212542 1
17748 1.295512 -0.6736084 0.7212542 2
17749 1.295512 -0.6736084 0.7212542 3
17750 1.295512 -0.6736084 0.7212542 3
17751 1.295512 -0.6736084 0.7212542 1
17752 1.295512 -0.6736084 0.7212542 3
17753 1.295512 -0.6736084 0.7212542 2
17754 1.295512 -0.6736084 0.7212542 1
17755 1.295512 -0.6736084 0.7212542 2
17756 1.295512 -0.6736084 0.7212542 2
17757 1.295512 -0.6736084 0.7212542 3
17758 1.295512 -0.6736084 0.7212542 1
17759 1.295512 -0.6736084 0.7212542 1
17760 1.295512 -0.6736084 0.7212542 2
17761 1.295512 -0.6736084 0.7212542 2
17762 1.295512 -0.6736084 0.7212542 2
17763 1.295512 -0.6736084 0.7212542 3
17764 1.295512 -0.6736084 0.7212542 2
17765 1.295512 -0.6736084 0.7212542 2
17766 1.295512 -0.6736084 0.7212542 1
17767 1.295512 -0.6736084 0.7212542 3
17768 1.295512 -0.6736084 0.7212542 3
17769 1.295512 -0.6736084 0.7212542 2
17770 1.295512 -0.6736084 0.7212542 2
17771 1.295512 -0.6736084 0.7212542 1
17772 1.295512 -0.6736084 0.7212542 2
17773 1.295512 -0.6736084 0.7212542 2
17774 1.295512 -0.6736084 0.7212542 3
17775 1.295512 -0.6736084 0.7212542 2
17776 1.295512 -0.6736084 0.7212542 2
17777 1.295512 -0.6736084 0.7212542 1
17778 1.295512 -0.6736084 0.7212542 2
17779 1.295512 -0.6736084 0.7212542 2
17780 1.295512 -0.6736084 0.7212542 3
17781 1.295512 -0.6736084 0.7212542 1
17782 1.295512 -0.6736084 0.7212542 3
17783 1.295512 -0.6736084 0.7212542 3
17784 1.295512 -0.6736084 0.7212542 2
17785 1.295512 -0.6736084 0.7212542 1
17786 1.295512 -0.6736084 0.7212542 3
17787 1.295512 -0.6736084 0.7212542 1
17788 1.295512 -0.6736084 0.7212542 2
17789 1.295512 -0.6736084 0.7212542 1
17790 1.295512 -0.6736084 0.7212542 1
17791 1.295512 -0.6736084 0.7212542 3
17792 1.295512 -0.6736084 0.7212542 3
17793 1.295512 -0.6736084 0.7212542 1
17794 1.295512 -0.6736084 0.7212542 3
17795 1.295512 -0.6736084 0.7212542 2
17796 1.295512 -0.6736084 0.7212542 3
17797 1.295512 -0.6736084 0.7212542 1
17798 1.295512 -0.6736084 0.7212542 1
17799 1.295512 -0.6736084 0.7212542 1
17800 1.295512 -0.6736084 0.7212542 1
17801 1.295512 -0.6736084 0.7212542 1
17802 1.295512 -0.6736084 0.7212542 3
17803 1.295512 -0.6736084 0.7212542 3
17804 1.295512 -0.6736084 0.7212542 3
17805 1.295512 -0.6736084 0.7212542 1
17806 1.295512 -0.6736084 0.7212542 1
17807 1.295512 -0.6736084 0.7212542 3
17808 1.295512 -0.6736084 0.7212542 2
17809 1.295512 -0.6736084 0.7212542 1
17810 1.295512 -0.6736084 0.7212542 2
17811 1.295512 -0.6736084 0.7212542 1
17812 1.295512 -0.6736084 0.7212542 2
17813 1.295512 -0.6736084 0.7212542 3
17814 1.295512 -0.6736084 0.7212542 1
17815 1.295512 -0.6736084 0.7212542 3
17816 1.295512 -0.6736084 0.7212542 3
17817 1.295512 -0.6736084 0.7212542 2
17818 1.295512 -0.6736084 0.7212542 1
17819 1.295512 -0.6736084 0.7212542 2
17820 1.295512 -0.6736084 0.7212542 2
17821 1.295512 -0.6736084 0.7212542 2
17822 1.295512 -0.6736084 0.7212542 2
17823 1.295512 -0.6736084 0.7212542 1
17824 1.295512 -0.6736084 0.7212542 2
17825 1.295512 -0.6736084 0.7212542 1
17826 1.295512 -0.6736084 0.7212542 1
17827 1.295512 -0.6736084 0.7212542 3
17828 1.295512 -0.6736084 0.7212542 1
17829 1.295512 -0.6736084 0.7212542 3
17830 1.295512 -0.6736084 0.7212542 2
17831 1.295512 -0.6736084 0.7212542 3
17832 1.295512 -0.6736084 0.7212542 1
17833 1.295512 -0.6736084 0.7212542 3
17834 1.295512 -0.6736084 0.7212542 2
17835 1.295512 -0.6736084 0.7212542 2
17836 1.295512 -0.6736084 0.7212542 1
17837 1.295512 -0.6736084 0.7212542 3
17838 1.295512 -0.6736084 0.7212542 1
17839 1.295512 -0.6736084 0.7212542 2
17840 1.295512 -0.6736084 0.7212542 3
17841 1.295512 -0.6736084 0.7212542 3
17842 1.295512 -0.6736084 0.7212542 2
17843 1.295512 -0.6736084 0.7212542 2
17844 1.295512 -0.6736084 0.7212542 2
17845 1.295512 -0.6736084 0.7212542 1
17846 1.295512 -0.6736084 0.7212542 3
17847 1.295512 -0.6736084 0.7212542 2
17848 1.295512 -0.6736084 0.7212542 3
17849 1.295512 -0.6736084 0.7212542 2
17850 1.295512 -0.6736084 0.7212542 3
17851 1.295512 -0.6736084 0.7212542 2
17852 1.295512 -0.6736084 0.7212542 3
17853 1.295512 -0.6736084 0.7212542 3
17854 1.295512 -0.6736084 0.7212542 3
17855 1.295512 -0.6736084 0.7212542 3
17856 1.295512 -0.6736084 0.7212542 2
17857 1.295512 -0.6736084 0.7212542 3
17858 1.295512 -0.6736084 0.7212542 1
17859 1.295512 -0.6736084 0.7212542 1
17860 1.295512 -0.6736084 0.7212542 2
17861 1.295512 -0.6736084 0.7212542 2
17862 1.295512 -0.6736084 0.7212542 1
17863 1.295512 -0.6736084 0.7212542 1
17864 1.295512 -0.6736084 0.7212542 3
17865 1.295512 -0.6736084 0.7212542 1
17866 1.295512 -0.6736084 0.7212542 1
17867 1.295512 -0.6736084 0.7212542 1
17868 1.295512 -0.6736084 0.7212542 3
17869 1.295512 -0.6736084 0.7212542 1
17870 1.295512 -0.6736084 0.7212542 1
17871 1.295512 -0.6736084 0.7212542 3
17872 1.295512 -0.6736084 0.7212542 3
17873 1.295512 -0.6736084 0.7212542 1
17874 1.295512 -0.6736084 0.7212542 2
17875 1.295512 -0.6736084 0.7212542 3
17876 1.295512 -0.6736084 0.7212542 1
17877 1.295512 -0.6736084 0.7212542 2
17878 1.295512 -0.6736084 0.7212542 2
17879 1.295512 -0.6736084 0.7212542 2
17880 1.295512 -0.6736084 0.7212542 1
17881 1.295512 -0.6736084 0.7212542 2
17882 1.295512 -0.6736084 0.7212542 2
17883 1.295512 -0.6736084 0.7212542 3
17884 1.295512 -0.6736084 0.7212542 3
17885 1.295512 -0.6736084 0.7212542 1
17886 1.295512 -0.6736084 0.7212542 2
17887 1.295512 -0.6736084 0.7212542 3
17888 1.295512 -0.6736084 0.7212542 3
17889 1.295512 -0.6736084 0.7212542 1
17890 1.295512 -0.6736084 0.7212542 3
17891 1.295512 -0.6736084 0.7212542 2
17892 1.295512 -0.6736084 0.7212542 2
17893 1.295512 -0.6736084 0.7212542 1
17894 1.295512 -0.6736084 0.7212542 3
17895 1.295512 -0.6736084 0.7212542 2
17896 1.295512 -0.6736084 0.7212542 1
17897 1.295512 -0.6736084 0.7212542 2
17898 1.295512 -0.6736084 0.7212542 3
17899 1.295512 -0.6736084 0.7212542 2
17900 1.295512 -0.6736084 0.7212542 3
17901 1.295512 -0.6736084 0.7212542 1
17902 1.295512 -0.6736084 0.7212542 3
17903 1.295512 -0.6736084 0.7212542 2
17904 1.295512 -0.6736084 0.7212542 2
17905 1.295512 -0.6736084 0.7212542 2
17906 1.295512 -0.6736084 0.7212542 1
17907 1.295512 -0.6736084 0.7212542 2
17908 1.295512 -0.6736084 0.7212542 3
17909 1.295512 -0.6736084 0.7212542 1
17910 1.295512 -0.6736084 0.7212542 3
17911 1.295512 -0.6736084 0.7212542 3
17912 1.295512 -0.6736084 0.7212542 2
17913 1.295512 -0.6736084 0.7212542 2
17914 1.295512 -0.6736084 0.7212542 1
17915 1.295512 -0.6736084 0.7212542 1
17916 1.295512 -0.6736084 0.7212542 1
17917 1.295512 -0.6736084 0.7212542 2
17918 1.295512 -0.6736084 0.7212542 2
17919 1.295512 -0.6736084 0.7212542 3
17920 1.295512 -0.6736084 0.7212542 3
17921 1.295512 -0.6736084 0.7212542 1
17922 1.295512 -0.6736084 0.7212542 2
17923 1.295512 -0.6736084 0.7212542 2
17924 1.295512 -0.6736084 0.7212542 2
17925 1.295512 -0.6736084 0.7212542 1
17926 1.295512 -0.6736084 0.7212542 1
17927 1.295512 -0.6736084 0.7212542 3
17928 1.295512 -0.6736084 0.7212542 1
17929 1.295512 -0.6736084 0.7212542 2
17930 1.295512 -0.6736084 0.7212542 1
17931 1.295512 -0.6736084 0.7212542 2
17932 1.295512 -0.6736084 0.7212542 3
17933 1.295512 -0.6736084 0.7212542 3
17934 1.295512 -0.6736084 0.7212542 3
17935 1.295512 -0.6736084 0.7212542 2
17936 1.295512 -0.6736084 0.7212542 2
17937 1.295512 -0.6736084 0.7212542 2
17938 1.295512 -0.6736084 0.7212542 1
17939 1.295512 -0.6736084 0.7212542 1
17940 1.295512 -0.6736084 0.7212542 2
17941 1.295512 -0.6736084 0.7212542 2
17942 1.295512 -0.6736084 0.7212542 3
17943 1.295512 -0.6736084 0.7212542 2
17944 1.295512 -0.6736084 0.7212542 3
17945 1.295512 -0.6736084 0.7212542 1
17946 1.295512 -0.6736084 0.7212542 3
17947 1.295512 -0.6736084 0.7212542 1
17948 1.295512 -0.6736084 0.7212542 2
17949 1.295512 -0.6736084 0.7212542 1
17950 1.295512 -0.6736084 0.7212542 1
17951 1.295512 -0.6736084 0.7212542 1
17952 1.295512 -0.6736084 0.7212542 1
17953 1.295512 -0.6736084 0.7212542 3
17954 1.295512 -0.6736084 0.7212542 1
17955 1.295512 -0.6736084 0.7212542 2
17956 1.295512 -0.6736084 0.7212542 2
17957 1.295512 -0.6736084 0.7212542 3
17958 1.295512 -0.6736084 0.7212542 1
17959 1.295512 -0.6736084 0.7212542 3
17960 1.295512 -0.6736084 0.7212542 2
17961 1.295512 -0.6736084 0.7212542 2
17962 1.295512 -0.6736084 0.7212542 2
17963 1.295512 -0.6736084 0.7212542 2
17964 1.295512 -0.6736084 0.7212542 3
17965 1.295512 -0.6736084 0.7212542 2
17966 1.295512 -0.6736084 0.7212542 1
17967 1.295512 -0.6736084 0.7212542 1
17968 1.295512 -0.6736084 0.7212542 2
17969 1.295512 -0.6736084 0.7212542 2
17970 1.295512 -0.6736084 0.7212542 1
17971 1.295512 -0.6736084 0.7212542 1
17972 1.295512 -0.6736084 0.7212542 3
17973 1.295512 -0.6736084 0.7212542 2
17974 1.295512 -0.6736084 0.7212542 3
17975 1.295512 -0.6736084 0.7212542 1
17976 1.295512 -0.6736084 0.7212542 2
17977 1.295512 -0.6736084 0.7212542 2
17978 1.295512 -0.6736084 0.7212542 2
17979 1.295512 -0.6736084 0.7212542 2
17980 1.295512 -0.6736084 0.7212542 2
17981 1.295512 -0.6736084 0.7212542 3
17982 1.295512 -0.6736084 0.7212542 2
17983 1.295512 -0.6736084 0.7212542 3
17984 1.295512 -0.6736084 0.7212542 3
17985 1.295512 -0.6736084 0.7212542 1
17986 1.295512 -0.6736084 0.7212542 1
17987 1.295512 -0.6736084 0.7212542 1
17988 1.295512 -0.6736084 0.7212542 2
17989 1.295512 -0.6736084 0.7212542 3
17990 1.295512 -0.6736084 0.7212542 2
17991 1.295512 -0.6736084 0.7212542 1
17992 1.295512 -0.6736084 0.7212542 2
17993 1.295512 -0.6736084 0.7212542 3
17994 1.295512 -0.6736084 0.7212542 2
17995 1.295512 -0.6736084 0.7212542 1
17996 1.295512 -0.6736084 0.7212542 3
17997 1.295512 -0.6736084 0.7212542 2
17998 1.295512 -0.6736084 0.7212542 2
17999 1.295512 -0.6736084 0.7212542 2
18000 1.295512 -0.6736084 0.7212542 1
18001 1.295512 -0.6736084 0.7212542 3
18002 1.295512 -0.6736084 0.7212542 1
18003 1.295512 -0.6736084 0.7212542 1
18004 1.295512 -0.6736084 0.7212542 2
18005 1.295512 -0.6736084 0.7212542 2
18006 1.295512 -0.6736084 0.7212542 2
18007 1.295512 -0.6736084 0.7212542 3
18008 1.295512 -0.6736084 0.7212542 2
18009 1.295512 -0.6736084 0.7212542 2
18010 1.295512 -0.6736084 0.7212542 3
18011 1.295512 -0.6736084 0.7212542 2
18012 1.295512 -0.6736084 0.7212542 1
18013 1.295512 -0.6736084 0.7212542 1
18014 1.295512 -0.6736084 0.7212542 1
18015 1.295512 -0.6736084 0.7212542 2
18016 1.295512 -0.6736084 0.7212542 1
18017 1.295512 -0.6736084 0.7212542 1
18018 1.295512 -0.6736084 0.7212542 2
18019 1.295512 -0.6736084 0.7212542 2
18020 1.295512 -0.6736084 0.7212542 3
18021 1.295512 -0.6736084 0.7212542 1
18022 1.295512 -0.6736084 0.7212542 2
18023 1.295512 -0.6736084 0.7212542 3
18024 1.295512 -0.6736084 0.7212542 3
18025 1.295512 -0.6736084 0.7212542 3
18026 1.295512 -0.6736084 0.7212542 2
18027 1.295512 -0.6736084 0.7212542 3
18028 1.295512 -0.6736084 0.7212542 2
18029 1.295512 -0.6736084 0.7212542 1
18030 1.295512 -0.6736084 0.7212542 3
18031 1.295512 -0.6736084 0.7212542 1
18032 1.295512 -0.6736084 0.7212542 2
18033 1.295512 -0.6736084 0.7212542 1
18034 1.295512 -0.6736084 0.7212542 2
18035 1.295512 -0.6736084 0.7212542 1
18036 1.295512 -0.6736084 0.7212542 1
18037 1.295512 -0.6736084 0.7212542 3
18038 1.295512 -0.6736084 0.7212542 3
18039 1.295512 -0.6736084 0.7212542 2
18040 1.295512 -0.6736084 0.7212542 3
18041 1.295512 -0.6736084 0.7212542 2
18042 1.295512 -0.6736084 0.7212542 2
18043 1.295512 -0.6736084 0.7212542 1
18044 1.295512 -0.6736084 0.7212542 1
18045 1.295512 -0.6736084 0.7212542 3
18046 1.295512 -0.6736084 0.7212542 2
18047 1.295512 -0.6736084 0.7212542 1
18048 1.295512 -0.6736084 0.7212542 2
18049 1.295512 -0.6736084 0.7212542 2
18050 1.295512 -0.6736084 0.7212542 3
18051 1.295512 -0.6736084 0.7212542 2
18052 1.295512 -0.6736084 0.7212542 2
18053 1.295512 -0.6736084 0.7212542 2
18054 1.295512 -0.6736084 0.7212542 3
18055 1.295512 -0.6736084 0.7212542 2
18056 1.295512 -0.6736084 0.7212542 3
18057 1.295512 -0.6736084 0.7212542 1
18058 1.295512 -0.6736084 0.7212542 1
18059 1.295512 -0.6736084 0.7212542 3
18060 1.295512 -0.6736084 0.7212542 2
18061 1.295512 -0.6736084 0.7212542 3
18062 1.295512 -0.6736084 0.7212542 3
18063 1.295512 -0.6736084 0.7212542 3
18064 1.295512 -0.6736084 0.7212542 2
18065 1.295512 -0.6736084 0.7212542 2
18066 1.295512 -0.6736084 0.7212542 2
18067 1.295512 -0.6736084 0.7212542 1
18068 1.295512 -0.6736084 0.7212542 1
18069 1.295512 -0.6736084 0.7212542 3
18070 1.295512 -0.6736084 0.7212542 1
18071 1.295512 -0.6736084 0.7212542 2
18072 1.295512 -0.6736084 0.7212542 3
18073 1.295512 -0.6736084 0.7212542 2
18074 1.295512 -0.6736084 0.7212542 3
18075 1.295512 -0.6736084 0.7212542 2
18076 1.295512 -0.6736084 0.7212542 3
18077 1.295512 -0.6736084 0.7212542 1
18078 1.295512 -0.6736084 0.7212542 2
18079 1.295512 -0.6736084 0.7212542 3
18080 1.295512 -0.6736084 0.7212542 1
18081 1.295512 -0.6736084 0.7212542 2
18082 1.295512 -0.6736084 0.7212542 3
18083 1.295512 -0.6736084 0.7212542 1
18084 1.295512 -0.6736084 0.7212542 3
18085 1.295512 -0.6736084 0.7212542 2
18086 1.295512 -0.6736084 0.7212542 3
18087 1.295512 -0.6736084 0.7212542 3
18088 1.295512 -0.6736084 0.7212542 1
18089 1.295512 -0.6736084 0.7212542 2
18090 1.295512 -0.6736084 0.7212542 2
18091 1.295512 -0.6736084 0.7212542 1
18092 1.295512 -0.6736084 0.7212542 3
18093 1.295512 -0.6736084 0.7212542 2
18094 1.295512 -0.6736084 0.7212542 1
18095 1.295512 -0.6736084 0.7212542 1
18096 1.295512 -0.6736084 0.7212542 1
18097 1.295512 -0.6736084 0.7212542 3
18098 1.295512 -0.6736084 0.7212542 3
18099 1.295512 -0.6736084 0.7212542 3
18100 1.295512 -0.6736084 0.7212542 2
18101 1.295512 -0.6736084 0.7212542 1
18102 1.295512 -0.6736084 0.7212542 3
18103 1.295512 -0.6736084 0.7212542 3
18104 1.295512 -0.6736084 0.7212542 3
18105 1.295512 -0.6736084 0.7212542 1
18106 1.295512 -0.6736084 0.7212542 2
18107 1.295512 -0.6736084 0.7212542 1
18108 1.295512 -0.6736084 0.7212542 1
18109 1.295512 -0.6736084 0.7212542 3
18110 1.295512 -0.6736084 0.7212542 1
18111 1.295512 -0.6736084 0.7212542 3
18112 1.295512 -0.6736084 0.7212542 3
18113 1.295512 -0.6736084 0.7212542 2
18114 1.295512 -0.6736084 0.7212542 3
18115 1.295512 -0.6736084 0.7212542 2
18116 1.295512 -0.6736084 0.7212542 2
18117 1.295512 -0.6736084 0.7212542 2
18118 1.295512 -0.6736084 0.7212542 2
18119 1.295512 -0.6736084 0.7212542 1
18120 1.295512 -0.6736084 0.7212542 2
18121 1.295512 -0.6736084 0.7212542 3
18122 1.295512 -0.6736084 0.7212542 3
18123 1.295512 -0.6736084 0.7212542 1
18124 1.295512 -0.6736084 0.7212542 1
18125 1.295512 -0.6736084 0.7212542 1
18126 1.295512 -0.6736084 0.7212542 2
18127 1.295512 -0.6736084 0.7212542 3
18128 1.295512 -0.6736084 0.7212542 2
18129 1.295512 -0.6736084 0.7212542 2
18130 1.295512 -0.6736084 0.7212542 2
18131 1.295512 -0.6736084 0.7212542 1
18132 1.295512 -0.6736084 0.7212542 2
18133 1.295512 -0.6736084 0.7212542 3
18134 1.295512 -0.6736084 0.7212542 3
18135 1.295512 -0.6736084 0.7212542 3
18136 1.295512 -0.6736084 0.7212542 3
18137 1.295512 -0.6736084 0.7212542 2
18138 1.295512 -0.6736084 0.7212542 3
18139 1.295512 -0.6736084 0.7212542 2
18140 1.295512 -0.6736084 0.7212542 2
18141 1.295512 -0.6736084 0.7212542 3
18142 1.295512 -0.6736084 0.7212542 1
18143 1.295512 -0.6736084 0.7212542 3
18144 1.295512 -0.6736084 0.7212542 1
18145 1.295512 -0.6736084 0.7212542 1
18146 1.295512 -0.6736084 0.7212542 1
18147 1.295512 -0.6736084 0.7212542 2
18148 1.295512 -0.6736084 0.7212542 3
18149 1.295512 -0.6736084 0.7212542 1
18150 1.295512 -0.6736084 0.7212542 1
18151 1.295512 -0.6736084 0.7212542 3
18152 1.295512 -0.6736084 0.7212542 3
18153 1.295512 -0.6736084 0.7212542 2
18154 1.295512 -0.6736084 0.7212542 2
18155 1.295512 -0.6736084 0.7212542 3
18156 1.295512 -0.6736084 0.7212542 1
18157 1.295512 -0.6736084 0.7212542 3
18158 1.295512 -0.6736084 0.7212542 2
18159 1.295512 -0.6736084 0.7212542 2
18160 1.295512 -0.6736084 0.7212542 2
18161 1.295512 -0.6736084 0.7212542 2
18162 1.295512 -0.6736084 0.7212542 1
18163 1.295512 -0.6736084 0.7212542 2
18164 1.295512 -0.6736084 0.7212542 2
18165 1.295512 -0.6736084 0.7212542 3
18166 1.295512 -0.6736084 0.7212542 3
18167 1.295512 -0.6736084 0.7212542 1
18168 1.295512 -0.6736084 0.7212542 1
18169 1.295512 -0.6736084 0.7212542 3
18170 1.295512 -0.6736084 0.7212542 2
18171 1.295512 -0.6736084 0.7212542 1
18172 1.295512 -0.6736084 0.7212542 1
18173 1.295512 -0.6736084 0.7212542 3
18174 1.295512 -0.6736084 0.7212542 1
18175 1.295512 -0.6736084 0.7212542 1
18176 1.295512 -0.6736084 0.7212542 1
18177 1.295512 -0.6736084 0.7212542 3
18178 1.295512 -0.6736084 0.7212542 2
18179 1.295512 -0.6736084 0.7212542 3
18180 1.295512 -0.6736084 0.7212542 2
18181 1.295512 -0.6736084 0.7212542 2
18182 1.295512 -0.6736084 0.7212542 2
18183 1.295512 -0.6736084 0.7212542 1
18184 1.295512 -0.6736084 0.7212542 1
18185 1.295512 -0.6736084 0.7212542 2
18186 1.295512 -0.6736084 0.7212542 2
18187 1.295512 -0.6736084 0.7212542 3
18188 1.295512 -0.6736084 0.7212542 1
18189 1.295512 -0.6736084 0.7212542 3
18190 1.295512 -0.6736084 0.7212542 3
18191 1.295512 -0.6736084 0.7212542 1
18192 1.295512 -0.6736084 0.7212542 1
18193 1.295512 -0.6736084 0.7212542 2
18194 1.295512 -0.6736084 0.7212542 3
18195 1.295512 -0.6736084 0.7212542 3
18196 1.295512 -0.6736084 0.7212542 2
18197 1.295512 -0.6736084 0.7212542 3
18198 1.295512 -0.6736084 0.7212542 3
18199 1.295512 -0.6736084 0.7212542 1
18200 1.295512 -0.6736084 0.7212542 2
18201 1.295512 -0.6736084 0.7212542 2
18202 1.295512 -0.6736084 0.7212542 3
18203 1.295512 -0.6736084 0.7212542 2
18204 1.295512 -0.6736084 0.7212542 2
18205 1.295512 -0.6736084 0.7212542 1
18206 1.295512 -0.6736084 0.7212542 3
18207 1.295512 -0.6736084 0.7212542 1
18208 1.295512 -0.6736084 0.7212542 1
18209 1.295512 -0.6736084 0.7212542 1
18210 1.295512 -0.6736084 0.7212542 2
18211 1.295512 -0.6736084 0.7212542 3
18212 1.295512 -0.6736084 0.7212542 1
18213 1.295512 -0.6736084 0.7212542 1
18214 1.295512 -0.6736084 0.7212542 1
18215 1.295512 -0.6736084 0.7212542 3
18216 1.295512 -0.6736084 0.7212542 2
18217 1.295512 -0.6736084 0.7212542 1
18218 1.295512 -0.6736084 0.7212542 2
18219 1.295512 -0.6736084 0.7212542 1
18220 1.295512 -0.6736084 0.7212542 2
18221 1.295512 -0.6736084 0.7212542 2
18222 1.295512 -0.6736084 0.7212542 1
18223 1.295512 -0.6736084 0.7212542 1
18224 1.295512 -0.6736084 0.7212542 2
18225 1.295512 -0.6736084 0.7212542 2
18226 1.295512 -0.6736084 0.7212542 3
18227 1.295512 -0.6736084 0.7212542 1
18228 1.295512 -0.6736084 0.7212542 3
18229 1.295512 -0.6736084 0.7212542 2
18230 1.295512 -0.6736084 0.7212542 3
18231 1.295512 -0.6736084 0.7212542 1
18232 1.295512 -0.6736084 0.7212542 3
18233 1.295512 -0.6736084 0.7212542 3
18234 1.295512 -0.6736084 0.7212542 2
18235 1.295512 -0.6736084 0.7212542 3
18236 1.295512 -0.6736084 0.7212542 1
18237 1.295512 -0.6736084 0.7212542 2
18238 1.295512 -0.6736084 0.7212542 3
18239 1.295512 -0.6736084 0.7212542 2
18240 1.295512 -0.6736084 0.7212542 1
18241 1.295512 -0.6736084 0.7212542 3
18242 1.295512 -0.6736084 0.7212542 3
18243 1.295512 -0.6736084 0.7212542 1
18244 1.295512 -0.6736084 0.7212542 3
18245 1.295512 -0.6736084 0.7212542 1
18246 1.295512 -0.6736084 0.7212542 1
18247 1.295512 -0.6736084 0.7212542 1
18248 1.295512 -0.6736084 0.7212542 2
18249 1.295512 -0.6736084 0.7212542 2
18250 1.295512 -0.6736084 0.7212542 3
18251 1.295512 -0.6736084 0.7212542 1
18252 1.295512 -0.6736084 0.7212542 3
18253 1.295512 -0.6736084 0.7212542 2
18254 1.295512 -0.6736084 0.7212542 1
18255 1.295512 -0.6736084 0.7212542 2
18256 1.295512 -0.6736084 0.7212542 1
18257 1.295512 -0.6736084 0.7212542 1
18258 1.295512 -0.6736084 0.7212542 2
18259 1.295512 -0.6736084 0.7212542 2
18260 1.295512 -0.6736084 0.7212542 3
18261 1.295512 -0.6736084 0.7212542 1
18262 1.295512 -0.6736084 0.7212542 3
18263 1.295512 -0.6736084 0.7212542 2
18264 1.295512 -0.6736084 0.7212542 2
18265 1.295512 -0.6736084 0.7212542 2
18266 1.295512 -0.6736084 0.7212542 1
18267 1.295512 -0.6736084 0.7212542 3
18268 1.295512 -0.6736084 0.7212542 2
18269 1.295512 -0.6736084 0.7212542 3
18270 1.295512 -0.6736084 0.7212542 1
18271 1.295512 -0.6736084 0.7212542 3
18272 1.295512 -0.6736084 0.7212542 3
18273 1.295512 -0.6736084 0.7212542 1
18274 1.295512 -0.6736084 0.7212542 3
18275 1.295512 -0.6736084 0.7212542 3
18276 1.295512 -0.6736084 0.7212542 2
18277 1.295512 -0.6736084 0.7212542 3
18278 1.295512 -0.6736084 0.7212542 1
18279 1.295512 -0.6736084 0.7212542 3
18280 1.295512 -0.6736084 0.7212542 2
18281 1.295512 -0.6736084 0.7212542 3
18282 1.295512 -0.6736084 0.7212542 3
18283 1.295512 -0.6736084 0.7212542 2
18284 1.295512 -0.6736084 0.7212542 3
18285 1.295512 -0.6736084 0.7212542 2
18286 1.295512 -0.6736084 0.7212542 2
18287 1.295512 -0.6736084 0.7212542 2
18288 1.295512 -0.6736084 0.7212542 3
18289 1.295512 -0.6736084 0.7212542 3
18290 1.295512 -0.6736084 0.7212542 2
18291 1.295512 -0.6736084 0.7212542 2
18292 1.295512 -0.6736084 0.7212542 2
18293 1.295512 -0.6736084 0.7212542 3
18294 1.295512 -0.6736084 0.7212542 2
18295 1.295512 -0.6736084 0.7212542 2
18296 1.295512 -0.6736084 0.7212542 3
18297 1.295512 -0.6736084 0.7212542 3
18298 1.295512 -0.6736084 0.7212542 3
18299 1.295512 -0.6736084 0.7212542 1
18300 1.295512 -0.6736084 0.7212542 1
18301 1.295512 -0.6736084 0.7212542 2
18302 1.295512 -0.6736084 0.7212542 1
18303 1.295512 -0.6736084 0.7212542 1
18304 1.295512 -0.6736084 0.7212542 2
18305 1.295512 -0.6736084 0.7212542 1
18306 1.295512 -0.6736084 0.7212542 2
18307 1.295512 -0.6736084 0.7212542 3
18308 1.295512 -0.6736084 0.7212542 2
18309 1.295512 -0.6736084 0.7212542 2
18310 1.295512 -0.6736084 0.7212542 1
18311 1.295512 -0.6736084 0.7212542 3
18312 1.295512 -0.6736084 0.7212542 2
18313 1.295512 -0.6736084 0.7212542 2
18314 1.295512 -0.6736084 0.7212542 2
18315 1.295512 -0.6736084 0.7212542 1
18316 1.295512 -0.6736084 0.7212542 3
18317 1.295512 -0.6736084 0.7212542 1
18318 1.295512 -0.6736084 0.7212542 3
18319 1.295512 -0.6736084 0.7212542 1
18320 1.295512 -0.6736084 0.7212542 2
18321 1.295512 -0.6736084 0.7212542 3
18322 1.295512 -0.6736084 0.7212542 3
18323 1.295512 -0.6736084 0.7212542 1
18324 1.295512 -0.6736084 0.7212542 1
18325 1.295512 -0.6736084 0.7212542 3
18326 1.295512 -0.6736084 0.7212542 2
18327 1.295512 -0.6736084 0.7212542 2
18328 1.295512 -0.6736084 0.7212542 2
18329 1.295512 -0.6736084 0.7212542 2
18330 1.295512 -0.6736084 0.7212542 3
18331 1.295512 -0.6736084 0.7212542 2
18332 1.295512 -0.6736084 0.7212542 2
18333 1.295512 -0.6736084 0.7212542 3
18334 1.295512 -0.6736084 0.7212542 1
18335 1.295512 -0.6736084 0.7212542 1
18336 1.295512 -0.6736084 0.7212542 3
18337 1.295512 -0.6736084 0.7212542 2
18338 1.295512 -0.6736084 0.7212542 3
18339 1.295512 -0.6736084 0.7212542 2
18340 1.295512 -0.6736084 0.7212542 2
18341 1.295512 -0.6736084 0.7212542 3
18342 1.295512 -0.6736084 0.7212542 1
18343 1.295512 -0.6736084 0.7212542 1
18344 1.295512 -0.6736084 0.7212542 3
18345 1.295512 -0.6736084 0.7212542 1
18346 1.295512 -0.6736084 0.7212542 1
18347 1.295512 -0.6736084 0.7212542 2
18348 1.295512 -0.6736084 0.7212542 1
18349 1.295512 -0.6736084 0.7212542 2
18350 1.295512 -0.6736084 0.7212542 2
18351 1.295512 -0.6736084 0.7212542 3
18352 1.295512 -0.6736084 0.7212542 3
18353 1.295512 -0.6736084 0.7212542 1
18354 1.295512 -0.6736084 0.7212542 3
18355 1.295512 -0.6736084 0.7212542 3
18356 1.295512 -0.6736084 0.7212542 3
18357 1.295512 -0.6736084 0.7212542 3
18358 1.295512 -0.6736084 0.7212542 2
18359 1.295512 -0.6736084 0.7212542 1
18360 1.295512 -0.6736084 0.7212542 3
18361 1.295512 -0.6736084 0.7212542 3
18362 1.295512 -0.6736084 0.7212542 2
18363 1.295512 -0.6736084 0.7212542 2
18364 1.295512 -0.6736084 0.7212542 2
18365 1.295512 -0.6736084 0.7212542 2
18366 1.295512 -0.6736084 0.7212542 3
18367 1.295512 -0.6736084 0.7212542 3
18368 1.295512 -0.6736084 0.7212542 1
18369 1.295512 -0.6736084 0.7212542 3
18370 1.295512 -0.6736084 0.7212542 3
18371 1.295512 -0.6736084 0.7212542 3
18372 1.295512 -0.6736084 0.7212542 3
18373 1.295512 -0.6736084 0.7212542 1
18374 1.295512 -0.6736084 0.7212542 1
18375 1.295512 -0.6736084 0.7212542 2
18376 1.295512 -0.6736084 0.7212542 3
18377 1.295512 -0.6736084 0.7212542 3
18378 1.295512 -0.6736084 0.7212542 3
18379 1.295512 -0.6736084 0.7212542 3
18380 1.295512 -0.6736084 0.7212542 1
18381 1.289631 -0.6620815 0.7272934 3
18382 1.289631 -0.6620815 0.7272934 2
18383 1.289631 -0.6620815 0.7272934 3
18384 1.289631 -0.6620815 0.7272934 3
18385 1.289631 -0.6620815 0.7272934 2
18386 1.289631 -0.6620815 0.7272934 2
18387 1.289631 -0.6620815 0.7272934 2
18388 1.289631 -0.6620815 0.7272934 1
18389 1.289631 -0.6620815 0.7272934 1
18390 1.289631 -0.6620815 0.7272934 3
18391 1.289631 -0.6620815 0.7272934 3
18392 1.289631 -0.6620815 0.7272934 1
18393 1.289631 -0.6620815 0.7272934 3
18394 1.289631 -0.6620815 0.7272934 1
18395 1.289631 -0.6620815 0.7272934 3
18396 1.289631 -0.6620815 0.7272934 2
18397 1.289631 -0.6620815 0.7272934 3
18398 1.289631 -0.6620815 0.7272934 3
18399 1.289631 -0.6620815 0.7272934 2
18400 1.289631 -0.6620815 0.7272934 2
18401 1.289631 -0.6620815 0.7272934 1
18402 1.289631 -0.6620815 0.7272934 3
18403 1.289631 -0.6620815 0.7272934 1
18404 1.289631 -0.6620815 0.7272934 1
18405 1.289631 -0.6620815 0.7272934 1
18406 1.289631 -0.6620815 0.7272934 1
18407 1.289631 -0.6620815 0.7272934 3
18408 1.289631 -0.6620815 0.7272934 2
18409 1.289631 -0.6620815 0.7272934 1
18410 1.289631 -0.6620815 0.7272934 3
18411 1.289631 -0.6620815 0.7272934 1
18412 1.289631 -0.6620815 0.7272934 2
18413 1.289631 -0.6620815 0.7272934 3
18414 1.289631 -0.6620815 0.7272934 1
18415 1.289631 -0.6620815 0.7272934 2
18416 1.289631 -0.6620815 0.7272934 2
18417 1.289631 -0.6620815 0.7272934 3
18418 1.289631 -0.6620815 0.7272934 1
18419 1.289631 -0.6620815 0.7272934 1
18420 1.289631 -0.6620815 0.7272934 2
18421 1.289631 -0.6620815 0.7272934 1
18422 1.289631 -0.6620815 0.7272934 2
18423 1.289631 -0.6620815 0.7272934 1
18424 1.289631 -0.6620815 0.7272934 1
18425 1.289631 -0.6620815 0.7272934 2
18426 1.289631 -0.6620815 0.7272934 1
18427 1.289631 -0.6620815 0.7272934 2
18428 1.289631 -0.6620815 0.7272934 2
18429 1.289631 -0.6620815 0.7272934 3
18430 1.289631 -0.6620815 0.7272934 1
18431 1.289631 -0.6620815 0.7272934 1
18432 1.289631 -0.6620815 0.7272934 2
18433 1.289631 -0.6620815 0.7272934 2
18434 1.289631 -0.6620815 0.7272934 3
18435 1.289631 -0.6620815 0.7272934 1
18436 1.289631 -0.6620815 0.7272934 1
18437 1.289631 -0.6620815 0.7272934 1
18438 1.289631 -0.6620815 0.7272934 2
18439 1.289631 -0.6620815 0.7272934 2
18440 1.289631 -0.6620815 0.7272934 2
18441 1.289631 -0.6620815 0.7272934 1
18442 1.289631 -0.6620815 0.7272934 2
18443 1.289631 -0.6620815 0.7272934 1
18444 1.289631 -0.6620815 0.7272934 1
18445 1.289631 -0.6620815 0.7272934 3
18446 1.289631 -0.6620815 0.7272934 3
18447 1.289631 -0.6620815 0.7272934 1
18448 1.289631 -0.6620815 0.7272934 2
18449 1.289631 -0.6620815 0.7272934 1
18450 1.289631 -0.6620815 0.7272934 2
18451 1.289631 -0.6620815 0.7272934 3
18452 1.289631 -0.6620815 0.7272934 3
18453 1.289631 -0.6620815 0.7272934 1
18454 1.289631 -0.6620815 0.7272934 3
18455 1.289631 -0.6620815 0.7272934 3
18456 1.289631 -0.6620815 0.7272934 3
18457 1.289631 -0.6620815 0.7272934 1
18458 1.289631 -0.6620815 0.7272934 1
18459 1.289631 -0.6620815 0.7272934 1
18460 1.289631 -0.6620815 0.7272934 3
18461 1.289631 -0.6620815 0.7272934 1
18462 1.289631 -0.6620815 0.7272934 2
18463 1.289631 -0.6620815 0.7272934 1
18464 1.289631 -0.6620815 0.7272934 2
18465 1.289631 -0.6620815 0.7272934 2
18466 1.289631 -0.6620815 0.7272934 3
18467 1.289631 -0.6620815 0.7272934 1
18468 1.289631 -0.6620815 0.7272934 1
18469 1.289631 -0.6620815 0.7272934 2
18470 1.289631 -0.6620815 0.7272934 3
18471 1.289631 -0.6620815 0.7272934 3
18472 1.289631 -0.6620815 0.7272934 1
18473 1.289631 -0.6620815 0.7272934 1
18474 1.289631 -0.6620815 0.7272934 3
18475 1.289631 -0.6620815 0.7272934 3
18476 1.289631 -0.6620815 0.7272934 3
18477 1.289631 -0.6620815 0.7272934 3
18478 1.289631 -0.6620815 0.7272934 2
18479 1.289631 -0.6620815 0.7272934 2
18480 1.289631 -0.6620815 0.7272934 1
18481 1.289631 -0.6620815 0.7272934 3
18482 1.289631 -0.6620815 0.7272934 2
18483 1.289631 -0.6620815 0.7272934 2
18484 1.289631 -0.6620815 0.7272934 2
18485 1.289631 -0.6620815 0.7272934 1
18486 1.289631 -0.6620815 0.7272934 3
18487 1.289631 -0.6620815 0.7272934 1
18488 1.289631 -0.6620815 0.7272934 2
18489 1.289631 -0.6620815 0.7272934 1
18490 1.289631 -0.6620815 0.7272934 3
18491 1.289631 -0.6620815 0.7272934 2
18492 1.289631 -0.6620815 0.7272934 1
18493 1.289631 -0.6620815 0.7272934 2
18494 1.289631 -0.6620815 0.7272934 3
18495 1.289631 -0.6620815 0.7272934 2
18496 1.289631 -0.6620815 0.7272934 1
18497 1.289631 -0.6620815 0.7272934 2
18498 1.289631 -0.6620815 0.7272934 3
18499 1.289631 -0.6620815 0.7272934 2
18500 1.289631 -0.6620815 0.7272934 3
18501 1.289631 -0.6620815 0.7272934 3
18502 1.289631 -0.6620815 0.7272934 3
18503 1.289631 -0.6620815 0.7272934 3
18504 1.289631 -0.6620815 0.7272934 3
18505 1.289631 -0.6620815 0.7272934 3
18506 1.289631 -0.6620815 0.7272934 2
18507 1.289631 -0.6620815 0.7272934 2
18508 1.289631 -0.6620815 0.7272934 2
18509 1.289631 -0.6620815 0.7272934 2
18510 1.289631 -0.6620815 0.7272934 3
18511 1.289631 -0.6620815 0.7272934 1
18512 1.289631 -0.6620815 0.7272934 1
18513 1.289631 -0.6620815 0.7272934 2
18514 1.289631 -0.6620815 0.7272934 1
18515 1.289631 -0.6620815 0.7272934 1
18516 1.289631 -0.6620815 0.7272934 3
18517 1.289631 -0.6620815 0.7272934 1
18518 1.289631 -0.6620815 0.7272934 2
18519 1.289631 -0.6620815 0.7272934 2
18520 1.289631 -0.6620815 0.7272934 1
18521 1.289631 -0.6620815 0.7272934 3
18522 1.289631 -0.6620815 0.7272934 3
18523 1.289631 -0.6620815 0.7272934 2
18524 1.289631 -0.6620815 0.7272934 3
18525 1.289631 -0.6620815 0.7272934 3
18526 1.289631 -0.6620815 0.7272934 1
18527 1.289631 -0.6620815 0.7272934 3
18528 1.289631 -0.6620815 0.7272934 3
18529 1.289631 -0.6620815 0.7272934 1
18530 1.289631 -0.6620815 0.7272934 1
18531 1.289631 -0.6620815 0.7272934 3
18532 1.289631 -0.6620815 0.7272934 1
18533 1.289631 -0.6620815 0.7272934 3
18534 1.289631 -0.6620815 0.7272934 2
18535 1.289631 -0.6620815 0.7272934 2
18536 1.289631 -0.6620815 0.7272934 2
18537 1.289631 -0.6620815 0.7272934 2
18538 1.289631 -0.6620815 0.7272934 1
18539 1.289631 -0.6620815 0.7272934 2
18540 1.289631 -0.6620815 0.7272934 2
18541 1.289631 -0.6620815 0.7272934 2
18542 1.289631 -0.6620815 0.7272934 3
18543 1.289631 -0.6620815 0.7272934 2
18544 1.289631 -0.6620815 0.7272934 1
18545 1.289631 -0.6620815 0.7272934 2
18546 1.289631 -0.6620815 0.7272934 2
18547 1.289631 -0.6620815 0.7272934 2
18548 1.289631 -0.6620815 0.7272934 1
18549 1.289631 -0.6620815 0.7272934 1
18550 1.289631 -0.6620815 0.7272934 2
18551 1.289631 -0.6620815 0.7272934 2
18552 1.289631 -0.6620815 0.7272934 3
18553 1.289631 -0.6620815 0.7272934 2
18554 1.289631 -0.6620815 0.7272934 3
18555 1.289631 -0.6620815 0.7272934 3
18556 1.289631 -0.6620815 0.7272934 3
18557 1.289631 -0.6620815 0.7272934 2
18558 1.289631 -0.6620815 0.7272934 3
18559 1.289631 -0.6620815 0.7272934 1
18560 1.289631 -0.6620815 0.7272934 3
18561 1.289631 -0.6620815 0.7272934 2
18562 1.289631 -0.6620815 0.7272934 2
18563 1.289631 -0.6620815 0.7272934 1
18564 1.289631 -0.6620815 0.7272934 1
18565 1.289631 -0.6620815 0.7272934 1
18566 1.289631 -0.6620815 0.7272934 1
18567 1.289631 -0.6620815 0.7272934 1
18568 1.289631 -0.6620815 0.7272934 1
18569 1.289631 -0.6620815 0.7272934 3
18570 1.289631 -0.6620815 0.7272934 2
18571 1.289631 -0.6620815 0.7272934 3
18572 1.289631 -0.6620815 0.7272934 1
18573 1.289631 -0.6620815 0.7272934 2
18574 1.289631 -0.6620815 0.7272934 3
18575 1.289631 -0.6620815 0.7272934 1
18576 1.289631 -0.6620815 0.7272934 1
18577 1.289631 -0.6620815 0.7272934 2
18578 1.289631 -0.6620815 0.7272934 2
18579 1.289631 -0.6620815 0.7272934 1
18580 1.289631 -0.6620815 0.7272934 3
18581 1.289631 -0.6620815 0.7272934 3
18582 1.289631 -0.6620815 0.7272934 1
18583 1.289631 -0.6620815 0.7272934 1
18584 1.289631 -0.6620815 0.7272934 1
18585 1.289631 -0.6620815 0.7272934 3
18586 1.289631 -0.6620815 0.7272934 2
18587 1.289631 -0.6620815 0.7272934 2
18588 1.289631 -0.6620815 0.7272934 2
18589 1.289631 -0.6620815 0.7272934 1
18590 1.289631 -0.6620815 0.7272934 3
18591 1.289631 -0.6620815 0.7272934 1
18592 1.289631 -0.6620815 0.7272934 3
18593 1.289631 -0.6620815 0.7272934 3
18594 1.289631 -0.6620815 0.7272934 1
18595 1.289631 -0.6620815 0.7272934 1
18596 1.289631 -0.6620815 0.7272934 3
18597 1.289631 -0.6620815 0.7272934 1
18598 1.289631 -0.6620815 0.7272934 1
18599 1.289631 -0.6620815 0.7272934 3
18600 1.289631 -0.6620815 0.7272934 2
18601 1.289631 -0.6620815 0.7272934 3
18602 1.289631 -0.6620815 0.7272934 3
18603 1.289631 -0.6620815 0.7272934 1
18604 1.289631 -0.6620815 0.7272934 1
18605 1.289631 -0.6620815 0.7272934 1
18606 1.289631 -0.6620815 0.7272934 2
18607 1.289631 -0.6620815 0.7272934 3
18608 1.289631 -0.6620815 0.7272934 3
18609 1.289631 -0.6620815 0.7272934 2
18610 1.289631 -0.6620815 0.7272934 3
18611 1.289631 -0.6620815 0.7272934 2
18612 1.289631 -0.6620815 0.7272934 2
18613 1.289631 -0.6620815 0.7272934 1
18614 1.289631 -0.6620815 0.7272934 2
18615 1.289631 -0.6620815 0.7272934 2
18616 1.289631 -0.6620815 0.7272934 3
18617 1.289631 -0.6620815 0.7272934 1
18618 1.289631 -0.6620815 0.7272934 3
18619 1.289631 -0.6620815 0.7272934 1
18620 1.289631 -0.6620815 0.7272934 3
18621 1.289631 -0.6620815 0.7272934 1
18622 1.289631 -0.6620815 0.7272934 1
18623 1.289631 -0.6620815 0.7272934 1
18624 1.289631 -0.6620815 0.7272934 2
18625 1.289631 -0.6620815 0.7272934 2
18626 1.289631 -0.6620815 0.7272934 3
18627 1.289631 -0.6620815 0.7272934 2
18628 1.289631 -0.6620815 0.7272934 1
18629 1.289631 -0.6620815 0.7272934 3
18630 1.289631 -0.6620815 0.7272934 3
18631 1.289631 -0.6620815 0.7272934 1
18632 1.289631 -0.6620815 0.7272934 3
18633 1.289631 -0.6620815 0.7272934 1
18634 1.289631 -0.6620815 0.7272934 1
18635 1.289631 -0.6620815 0.7272934 3
18636 1.289631 -0.6620815 0.7272934 2
18637 1.289631 -0.6620815 0.7272934 1
18638 1.289631 -0.6620815 0.7272934 3
18639 1.289631 -0.6620815 0.7272934 2
18640 1.289631 -0.6620815 0.7272934 3
18641 1.289631 -0.6620815 0.7272934 1
18642 1.289631 -0.6620815 0.7272934 2
18643 1.289631 -0.6620815 0.7272934 1
18644 1.289631 -0.6620815 0.7272934 1
18645 1.289631 -0.6620815 0.7272934 1
18646 1.289631 -0.6620815 0.7272934 2
18647 1.289631 -0.6620815 0.7272934 1
18648 1.289631 -0.6620815 0.7272934 3
18649 1.289631 -0.6620815 0.7272934 2
18650 1.289631 -0.6620815 0.7272934 1
18651 1.289631 -0.6620815 0.7272934 3
18652 1.289631 -0.6620815 0.7272934 1
18653 1.289631 -0.6620815 0.7272934 1
18654 1.289631 -0.6620815 0.7272934 3
18655 1.289631 -0.6620815 0.7272934 1
18656 1.289631 -0.6620815 0.7272934 1
18657 1.289631 -0.6620815 0.7272934 2
18658 1.289631 -0.6620815 0.7272934 1
18659 1.289631 -0.6620815 0.7272934 1
18660 1.289631 -0.6620815 0.7272934 2
18661 1.289631 -0.6620815 0.7272934 1
18662 1.289631 -0.6620815 0.7272934 3
18663 1.289631 -0.6620815 0.7272934 1
18664 1.289631 -0.6620815 0.7272934 3
18665 1.289631 -0.6620815 0.7272934 1
18666 1.289631 -0.6620815 0.7272934 3
18667 1.289631 -0.6620815 0.7272934 3
18668 1.289631 -0.6620815 0.7272934 3
18669 1.289631 -0.6620815 0.7272934 3
18670 1.289631 -0.6620815 0.7272934 3
18671 1.289631 -0.6620815 0.7272934 3
18672 1.289631 -0.6620815 0.7272934 1
18673 1.289631 -0.6620815 0.7272934 1
18674 1.289631 -0.6620815 0.7272934 2
18675 1.289631 -0.6620815 0.7272934 2
18676 1.289631 -0.6620815 0.7272934 1
18677 1.289631 -0.6620815 0.7272934 1
18678 1.289631 -0.6620815 0.7272934 1
18679 1.289631 -0.6620815 0.7272934 1
18680 1.289631 -0.6620815 0.7272934 2
18681 1.289631 -0.6620815 0.7272934 1
18682 1.289631 -0.6620815 0.7272934 3
18683 1.289631 -0.6620815 0.7272934 1
18684 1.289631 -0.6620815 0.7272934 3
18685 1.289631 -0.6620815 0.7272934 1
18686 1.289631 -0.6620815 0.7272934 1
18687 1.289631 -0.6620815 0.7272934 3
18688 1.289631 -0.6620815 0.7272934 2
18689 1.289631 -0.6620815 0.7272934 1
18690 1.289631 -0.6620815 0.7272934 1
18691 1.289631 -0.6620815 0.7272934 3
18692 1.289631 -0.6620815 0.7272934 1
18693 1.289631 -0.6620815 0.7272934 1
18694 1.289631 -0.6620815 0.7272934 2
18695 1.289631 -0.6620815 0.7272934 2
18696 1.289631 -0.6620815 0.7272934 2
18697 1.289631 -0.6620815 0.7272934 2
18698 1.289631 -0.6620815 0.7272934 2
18699 1.289631 -0.6620815 0.7272934 1
18700 1.289631 -0.6620815 0.7272934 3
18701 1.289631 -0.6620815 0.7272934 3
18702 1.289631 -0.6620815 0.7272934 2
18703 1.289631 -0.6620815 0.7272934 2
18704 1.289631 -0.6620815 0.7272934 1
18705 1.289631 -0.6620815 0.7272934 3
18706 1.289631 -0.6620815 0.7272934 2
18707 1.289631 -0.6620815 0.7272934 1
18708 1.289631 -0.6620815 0.7272934 3
18709 1.289631 -0.6620815 0.7272934 2
18710 1.289631 -0.6620815 0.7272934 3
18711 1.289631 -0.6620815 0.7272934 1
18712 1.289631 -0.6620815 0.7272934 3
18713 1.289631 -0.6620815 0.7272934 3
18714 1.289631 -0.6620815 0.7272934 2
18715 1.289631 -0.6620815 0.7272934 3
18716 1.289631 -0.6620815 0.7272934 3
18717 1.289631 -0.6620815 0.7272934 1
18718 1.289631 -0.6620815 0.7272934 3
18719 1.289631 -0.6620815 0.7272934 1
18720 1.289631 -0.6620815 0.7272934 1
18721 1.289631 -0.6620815 0.7272934 2
18722 1.289631 -0.6620815 0.7272934 3
18723 1.289631 -0.6620815 0.7272934 3
18724 1.289631 -0.6620815 0.7272934 1
18725 1.289631 -0.6620815 0.7272934 1
18726 1.289631 -0.6620815 0.7272934 1
18727 1.289631 -0.6620815 0.7272934 3
18728 1.289631 -0.6620815 0.7272934 1
18729 1.289631 -0.6620815 0.7272934 2
18730 1.289631 -0.6620815 0.7272934 1
18731 1.289631 -0.6620815 0.7272934 2
18732 1.289631 -0.6620815 0.7272934 1
18733 1.289631 -0.6620815 0.7272934 2
18734 1.289631 -0.6620815 0.7272934 1
18735 1.289631 -0.6620815 0.7272934 2
18736 1.289631 -0.6620815 0.7272934 3
18737 1.289631 -0.6620815 0.7272934 2
18738 1.289631 -0.6620815 0.7272934 3
18739 1.289631 -0.6620815 0.7272934 2
18740 1.289631 -0.6620815 0.7272934 3
18741 1.289631 -0.6620815 0.7272934 2
18742 1.289631 -0.6620815 0.7272934 1
18743 1.289631 -0.6620815 0.7272934 2
18744 1.289631 -0.6620815 0.7272934 1
18745 1.289631 -0.6620815 0.7272934 1
18746 1.289631 -0.6620815 0.7272934 2
18747 1.289631 -0.6620815 0.7272934 3
18748 1.289631 -0.6620815 0.7272934 1
18749 1.289631 -0.6620815 0.7272934 1
18750 1.289631 -0.6620815 0.7272934 3
18751 1.289631 -0.6620815 0.7272934 2
18752 1.289631 -0.6620815 0.7272934 3
18753 1.289631 -0.6620815 0.7272934 3
18754 1.289631 -0.6620815 0.7272934 2
18755 1.289631 -0.6620815 0.7272934 2
18756 1.289631 -0.6620815 0.7272934 1
18757 1.289631 -0.6620815 0.7272934 3
18758 1.289631 -0.6620815 0.7272934 1
18759 1.289631 -0.6620815 0.7272934 3
18760 1.289631 -0.6620815 0.7272934 3
18761 1.289631 -0.6620815 0.7272934 3
18762 1.289631 -0.6620815 0.7272934 1
18763 1.289631 -0.6620815 0.7272934 1
18764 1.289631 -0.6620815 0.7272934 3
18765 1.289631 -0.6620815 0.7272934 1
18766 1.289631 -0.6620815 0.7272934 2
18767 1.289631 -0.6620815 0.7272934 1
18768 1.289631 -0.6620815 0.7272934 1
18769 1.289631 -0.6620815 0.7272934 2
18770 1.289631 -0.6620815 0.7272934 2
18771 1.289631 -0.6620815 0.7272934 1
18772 1.289631 -0.6620815 0.7272934 1
18773 1.289631 -0.6620815 0.7272934 1
18774 1.289631 -0.6620815 0.7272934 3
18775 1.289631 -0.6620815 0.7272934 1
18776 1.289631 -0.6620815 0.7272934 3
18777 1.289631 -0.6620815 0.7272934 2
18778 1.289631 -0.6620815 0.7272934 3
18779 1.289631 -0.6620815 0.7272934 3
18780 1.289631 -0.6620815 0.7272934 1
18781 1.289631 -0.6620815 0.7272934 3
18782 1.289631 -0.6620815 0.7272934 2
18783 1.289631 -0.6620815 0.7272934 2
18784 1.289631 -0.6620815 0.7272934 3
18785 1.289631 -0.6620815 0.7272934 3
18786 1.289631 -0.6620815 0.7272934 3
18787 1.289631 -0.6620815 0.7272934 3
18788 1.289631 -0.6620815 0.7272934 2
18789 1.289631 -0.6620815 0.7272934 2
18790 1.289631 -0.6620815 0.7272934 3
18791 1.289631 -0.6620815 0.7272934 1
18792 1.289631 -0.6620815 0.7272934 2
18793 1.289631 -0.6620815 0.7272934 2
18794 1.289631 -0.6620815 0.7272934 2
18795 1.289631 -0.6620815 0.7272934 2
18796 1.289631 -0.6620815 0.7272934 1
18797 1.289631 -0.6620815 0.7272934 1
18798 1.289631 -0.6620815 0.7272934 1
18799 1.289631 -0.6620815 0.7272934 3
18800 1.289631 -0.6620815 0.7272934 2
18801 1.289631 -0.6620815 0.7272934 2
18802 1.289631 -0.6620815 0.7272934 1
18803 1.289631 -0.6620815 0.7272934 2
18804 1.289631 -0.6620815 0.7272934 1
18805 1.289631 -0.6620815 0.7272934 2
18806 1.289631 -0.6620815 0.7272934 1
18807 1.289631 -0.6620815 0.7272934 2
18808 1.289631 -0.6620815 0.7272934 3
18809 1.289631 -0.6620815 0.7272934 2
18810 1.289631 -0.6620815 0.7272934 2
18811 1.289631 -0.6620815 0.7272934 2
18812 1.289631 -0.6620815 0.7272934 1
18813 1.289631 -0.6620815 0.7272934 3
18814 1.289631 -0.6620815 0.7272934 3
18815 1.289631 -0.6620815 0.7272934 3
18816 1.289631 -0.6620815 0.7272934 1
18817 1.289631 -0.6620815 0.7272934 3
18818 1.289631 -0.6620815 0.7272934 2
18819 1.289631 -0.6620815 0.7272934 2
18820 1.289631 -0.6620815 0.7272934 3
18821 1.289631 -0.6620815 0.7272934 3
18822 1.289631 -0.6620815 0.7272934 1
18823 1.289631 -0.6620815 0.7272934 3
18824 1.289631 -0.6620815 0.7272934 2
18825 1.289631 -0.6620815 0.7272934 3
18826 1.289631 -0.6620815 0.7272934 2
18827 1.289631 -0.6620815 0.7272934 3
18828 1.289631 -0.6620815 0.7272934 2
18829 1.289631 -0.6620815 0.7272934 3
18830 1.289631 -0.6620815 0.7272934 2
18831 1.289631 -0.6620815 0.7272934 1
18832 1.289631 -0.6620815 0.7272934 2
18833 1.289631 -0.6620815 0.7272934 3
18834 1.289631 -0.6620815 0.7272934 1
18835 1.289631 -0.6620815 0.7272934 2
18836 1.289631 -0.6620815 0.7272934 2
18837 1.289631 -0.6620815 0.7272934 2
18838 1.289631 -0.6620815 0.7272934 2
18839 1.289631 -0.6620815 0.7272934 3
18840 1.289631 -0.6620815 0.7272934 2
18841 1.289631 -0.6620815 0.7272934 3
18842 1.289631 -0.6620815 0.7272934 3
18843 1.289631 -0.6620815 0.7272934 1
18844 1.289631 -0.6620815 0.7272934 1
18845 1.289631 -0.6620815 0.7272934 3
18846 1.289631 -0.6620815 0.7272934 1
18847 1.289631 -0.6620815 0.7272934 3
18848 1.289631 -0.6620815 0.7272934 2
18849 1.289631 -0.6620815 0.7272934 3
18850 1.289631 -0.6620815 0.7272934 3
18851 1.289631 -0.6620815 0.7272934 2
18852 1.289631 -0.6620815 0.7272934 3
18853 1.289631 -0.6620815 0.7272934 2
18854 1.289631 -0.6620815 0.7272934 1
18855 1.289631 -0.6620815 0.7272934 2
18856 1.289631 -0.6620815 0.7272934 3
18857 1.289631 -0.6620815 0.7272934 3
18858 1.289631 -0.6620815 0.7272934 1
18859 1.289631 -0.6620815 0.7272934 1
18860 1.289631 -0.6620815 0.7272934 2
18861 1.289631 -0.6620815 0.7272934 1
18862 1.289631 -0.6620815 0.7272934 1
18863 1.289631 -0.6620815 0.7272934 3
18864 1.289631 -0.6620815 0.7272934 3
18865 1.289631 -0.6620815 0.7272934 1
18866 1.289631 -0.6620815 0.7272934 3
18867 1.289631 -0.6620815 0.7272934 3
18868 1.289631 -0.6620815 0.7272934 3
18869 1.289631 -0.6620815 0.7272934 3
18870 1.289631 -0.6620815 0.7272934 3
18871 1.289631 -0.6620815 0.7272934 2
18872 1.289631 -0.6620815 0.7272934 3
18873 1.289631 -0.6620815 0.7272934 1
18874 1.289631 -0.6620815 0.7272934 1
18875 1.289631 -0.6620815 0.7272934 1
18876 1.289631 -0.6620815 0.7272934 3
18877 1.289631 -0.6620815 0.7272934 2
18878 1.289631 -0.6620815 0.7272934 1
18879 1.289631 -0.6620815 0.7272934 2
18880 1.289631 -0.6620815 0.7272934 1
18881 1.289631 -0.6620815 0.7272934 3
18882 1.289631 -0.6620815 0.7272934 3
18883 1.289631 -0.6620815 0.7272934 3
18884 1.289631 -0.6620815 0.7272934 3
18885 1.289631 -0.6620815 0.7272934 1
18886 1.289631 -0.6620815 0.7272934 3
18887 1.289631 -0.6620815 0.7272934 2
18888 1.289631 -0.6620815 0.7272934 1
18889 1.289631 -0.6620815 0.7272934 1
18890 1.289631 -0.6620815 0.7272934 1
18891 1.289631 -0.6620815 0.7272934 1
18892 1.289631 -0.6620815 0.7272934 1
18893 1.289631 -0.6620815 0.7272934 2
18894 1.289631 -0.6620815 0.7272934 3
18895 1.289631 -0.6620815 0.7272934 3
18896 1.289631 -0.6620815 0.7272934 2
18897 1.289631 -0.6620815 0.7272934 3
18898 1.289631 -0.6620815 0.7272934 3
18899 1.289631 -0.6620815 0.7272934 2
18900 1.289631 -0.6620815 0.7272934 1
18901 1.289631 -0.6620815 0.7272934 3
18902 1.289631 -0.6620815 0.7272934 2
18903 1.289631 -0.6620815 0.7272934 2
18904 1.289631 -0.6620815 0.7272934 1
18905 1.289631 -0.6620815 0.7272934 3
18906 1.289631 -0.6620815 0.7272934 1
18907 1.289631 -0.6620815 0.7272934 2
18908 1.289631 -0.6620815 0.7272934 2
18909 1.289631 -0.6620815 0.7272934 1
18910 1.289631 -0.6620815 0.7272934 1
18911 1.289631 -0.6620815 0.7272934 3
18912 1.289631 -0.6620815 0.7272934 1
18913 1.289631 -0.6620815 0.7272934 1
18914 1.289631 -0.6620815 0.7272934 1
18915 1.289631 -0.6620815 0.7272934 1
18916 1.289631 -0.6620815 0.7272934 3
18917 1.289631 -0.6620815 0.7272934 3
18918 1.289631 -0.6620815 0.7272934 1
18919 1.289631 -0.6620815 0.7272934 2
18920 1.289631 -0.6620815 0.7272934 1
18921 1.289631 -0.6620815 0.7272934 3
18922 1.289631 -0.6620815 0.7272934 2
18923 1.289631 -0.6620815 0.7272934 1
18924 1.289631 -0.6620815 0.7272934 3
18925 1.289631 -0.6620815 0.7272934 3
18926 1.289631 -0.6620815 0.7272934 1
18927 1.289631 -0.6620815 0.7272934 3
18928 1.289631 -0.6620815 0.7272934 1
18929 1.289631 -0.6620815 0.7272934 1
18930 1.289631 -0.6620815 0.7272934 2
18931 1.289631 -0.6620815 0.7272934 2
18932 1.289631 -0.6620815 0.7272934 3
18933 1.289631 -0.6620815 0.7272934 1
18934 1.289631 -0.6620815 0.7272934 2
18935 1.289631 -0.6620815 0.7272934 2
18936 1.289631 -0.6620815 0.7272934 1
18937 1.289631 -0.6620815 0.7272934 1
18938 1.289631 -0.6620815 0.7272934 2
18939 1.289631 -0.6620815 0.7272934 3
18940 1.289631 -0.6620815 0.7272934 3
18941 1.289631 -0.6620815 0.7272934 3
18942 1.289631 -0.6620815 0.7272934 1
18943 1.289631 -0.6620815 0.7272934 2
18944 1.289631 -0.6620815 0.7272934 2
18945 1.289631 -0.6620815 0.7272934 1
18946 1.289631 -0.6620815 0.7272934 2
18947 1.289631 -0.6620815 0.7272934 3
18948 1.289631 -0.6620815 0.7272934 2
18949 1.289631 -0.6620815 0.7272934 1
18950 1.289631 -0.6620815 0.7272934 3
18951 1.289631 -0.6620815 0.7272934 3
18952 1.289631 -0.6620815 0.7272934 1
18953 1.289631 -0.6620815 0.7272934 1
18954 1.289631 -0.6620815 0.7272934 2
18955 1.289631 -0.6620815 0.7272934 2
18956 1.289631 -0.6620815 0.7272934 2
18957 1.289631 -0.6620815 0.7272934 1
18958 1.289631 -0.6620815 0.7272934 2
18959 1.289631 -0.6620815 0.7272934 3
18960 1.289631 -0.6620815 0.7272934 2
18961 1.289631 -0.6620815 0.7272934 3
18962 1.289631 -0.6620815 0.7272934 2
18963 1.289631 -0.6620815 0.7272934 3
18964 1.289631 -0.6620815 0.7272934 2
18965 1.289631 -0.6620815 0.7272934 3
18966 1.289631 -0.6620815 0.7272934 2
18967 1.289631 -0.6620815 0.7272934 1
18968 1.289631 -0.6620815 0.7272934 3
18969 1.289631 -0.6620815 0.7272934 3
18970 1.289631 -0.6620815 0.7272934 3
18971 1.289631 -0.6620815 0.7272934 3
18972 1.289631 -0.6620815 0.7272934 1
18973 1.289631 -0.6620815 0.7272934 3
18974 1.289631 -0.6620815 0.7272934 2
18975 1.289631 -0.6620815 0.7272934 1
18976 1.289631 -0.6620815 0.7272934 3
18977 1.289631 -0.6620815 0.7272934 1
18978 1.289631 -0.6620815 0.7272934 3
18979 1.289631 -0.6620815 0.7272934 1
18980 1.289631 -0.6620815 0.7272934 1
18981 1.289631 -0.6620815 0.7272934 3
18982 1.289631 -0.6620815 0.7272934 1
18983 1.289631 -0.6620815 0.7272934 2
18984 1.289631 -0.6620815 0.7272934 3
18985 1.289631 -0.6620815 0.7272934 3
18986 1.289631 -0.6620815 0.7272934 3
18987 1.289631 -0.6620815 0.7272934 3
18988 1.289631 -0.6620815 0.7272934 1
18989 1.289631 -0.6620815 0.7272934 2
18990 1.289631 -0.6620815 0.7272934 2
18991 1.289631 -0.6620815 0.7272934 3
18992 1.289631 -0.6620815 0.7272934 1
18993 1.289631 -0.6620815 0.7272934 3
18994 1.289631 -0.6620815 0.7272934 1
18995 1.289631 -0.6620815 0.7272934 3
18996 1.289631 -0.6620815 0.7272934 1
18997 1.289631 -0.6620815 0.7272934 3
18998 1.289631 -0.6620815 0.7272934 3
18999 1.289631 -0.6620815 0.7272934 1
19000 1.289631 -0.6620815 0.7272934 3
19001 1.289631 -0.6620815 0.7272934 2
19002 1.289631 -0.6620815 0.7272934 1
19003 1.289631 -0.6620815 0.7272934 1
19004 1.289631 -0.6620815 0.7272934 1
19005 1.289631 -0.6620815 0.7272934 2
19006 1.289631 -0.6620815 0.7272934 2
19007 1.289631 -0.6620815 0.7272934 1
19008 1.289631 -0.6620815 0.7272934 2
19009 1.289631 -0.6620815 0.7272934 2
19010 1.289631 -0.6620815 0.7272934 1
19011 1.289631 -0.6620815 0.7272934 2
19012 1.289631 -0.6620815 0.7272934 2
19013 1.289631 -0.6620815 0.7272934 3
19014 1.289631 -0.6620815 0.7272934 1
19015 1.289631 -0.6620815 0.7272934 3
19016 1.289631 -0.6620815 0.7272934 1
19017 1.289631 -0.6620815 0.7272934 1
19018 1.289631 -0.6620815 0.7272934 3
19019 1.289631 -0.6620815 0.7272934 1
19020 1.289631 -0.6620815 0.7272934 2
19021 1.289631 -0.6620815 0.7272934 1
19022 1.289631 -0.6620815 0.7272934 3
19023 1.289631 -0.6620815 0.7272934 2
19024 1.289631 -0.6620815 0.7272934 3
19025 1.289631 -0.6620815 0.7272934 3
19026 1.289631 -0.6620815 0.7272934 2
19027 1.289631 -0.6620815 0.7272934 1
19028 1.289631 -0.6620815 0.7272934 3
19029 1.289631 -0.6620815 0.7272934 1
19030 1.289631 -0.6620815 0.7272934 2
19031 1.289631 -0.6620815 0.7272934 1
19032 1.289631 -0.6620815 0.7272934 1
19033 1.289631 -0.6620815 0.7272934 3
19034 1.289631 -0.6620815 0.7272934 3
19035 1.289631 -0.6620815 0.7272934 1
19036 1.289631 -0.6620815 0.7272934 1
19037 1.289631 -0.6620815 0.7272934 2
19038 1.289631 -0.6620815 0.7272934 2
19039 1.289631 -0.6620815 0.7272934 1
19040 1.289631 -0.6620815 0.7272934 3
19041 1.289631 -0.6620815 0.7272934 2
19042 1.289631 -0.6620815 0.7272934 3
19043 1.289631 -0.6620815 0.7272934 2
19044 1.289631 -0.6620815 0.7272934 1
19045 1.289631 -0.6620815 0.7272934 2
19046 1.289631 -0.6620815 0.7272934 3
19047 1.289631 -0.6620815 0.7272934 3
19048 1.289631 -0.6620815 0.7272934 2
19049 1.289631 -0.6620815 0.7272934 2
19050 1.289631 -0.6620815 0.7272934 1
19051 1.289631 -0.6620815 0.7272934 2
19052 1.289631 -0.6620815 0.7272934 3
19053 1.289631 -0.6620815 0.7272934 2
19054 1.289631 -0.6620815 0.7272934 3
19055 1.289631 -0.6620815 0.7272934 3
19056 1.289631 -0.6620815 0.7272934 3
19057 1.289631 -0.6620815 0.7272934 2
19058 1.289631 -0.6620815 0.7272934 2
19059 1.289631 -0.6620815 0.7272934 1
19060 1.289631 -0.6620815 0.7272934 3
19061 1.289631 -0.6620815 0.7272934 1
19062 1.289631 -0.6620815 0.7272934 3
19063 1.289631 -0.6620815 0.7272934 1
19064 1.289631 -0.6620815 0.7272934 3
19065 1.289631 -0.6620815 0.7272934 3
19066 1.289631 -0.6620815 0.7272934 3
19067 1.289631 -0.6620815 0.7272934 1
19068 1.289631 -0.6620815 0.7272934 3
19069 1.289631 -0.6620815 0.7272934 1
19070 1.289631 -0.6620815 0.7272934 2
19071 1.289631 -0.6620815 0.7272934 2
19072 1.289631 -0.6620815 0.7272934 2
19073 1.289631 -0.6620815 0.7272934 3
19074 1.289631 -0.6620815 0.7272934 1
19075 1.289631 -0.6620815 0.7272934 3
19076 1.289631 -0.6620815 0.7272934 2
19077 1.289631 -0.6620815 0.7272934 1
19078 1.289631 -0.6620815 0.7272934 2
19079 1.289631 -0.6620815 0.7272934 2
19080 1.289631 -0.6620815 0.7272934 1
19081 1.289631 -0.6620815 0.7272934 3
19082 1.289631 -0.6620815 0.7272934 1
19083 1.289631 -0.6620815 0.7272934 1
19084 1.289631 -0.6620815 0.7272934 1
19085 1.289631 -0.6620815 0.7272934 1
19086 1.289631 -0.6620815 0.7272934 2
19087 1.289631 -0.6620815 0.7272934 2
19088 1.289631 -0.6620815 0.7272934 1
19089 1.289631 -0.6620815 0.7272934 1
19090 1.289631 -0.6620815 0.7272934 1
19091 1.289631 -0.6620815 0.7272934 3
19092 1.289631 -0.6620815 0.7272934 1
19093 1.289631 -0.6620815 0.7272934 3
19094 1.289631 -0.6620815 0.7272934 1
19095 1.289631 -0.6620815 0.7272934 2
19096 1.289631 -0.6620815 0.7272934 2
19097 1.289631 -0.6620815 0.7272934 1
19098 1.289631 -0.6620815 0.7272934 1
19099 1.289631 -0.6620815 0.7272934 1
19100 1.289631 -0.6620815 0.7272934 3
19101 1.289631 -0.6620815 0.7272934 2
19102 1.289631 -0.6620815 0.7272934 3
19103 1.289631 -0.6620815 0.7272934 1
19104 1.289631 -0.6620815 0.7272934 3
19105 1.289631 -0.6620815 0.7272934 3
19106 1.289631 -0.6620815 0.7272934 3
19107 1.289631 -0.6620815 0.7272934 2
19108 1.289631 -0.6620815 0.7272934 1
19109 1.289631 -0.6620815 0.7272934 1
19110 1.289631 -0.6620815 0.7272934 3
19111 1.289631 -0.6620815 0.7272934 2
19112 1.289631 -0.6620815 0.7272934 1
19113 1.289631 -0.6620815 0.7272934 1
19114 1.289631 -0.6620815 0.7272934 3
19115 1.289631 -0.6620815 0.7272934 2
19116 1.289631 -0.6620815 0.7272934 2
19117 1.289631 -0.6620815 0.7272934 3
19118 1.289631 -0.6620815 0.7272934 2
19119 1.289631 -0.6620815 0.7272934 1
19120 1.289631 -0.6620815 0.7272934 2
19121 1.289631 -0.6620815 0.7272934 2
19122 1.289631 -0.6620815 0.7272934 2
19123 1.289631 -0.6620815 0.7272934 3
19124 1.289631 -0.6620815 0.7272934 2
19125 1.289631 -0.6620815 0.7272934 3
19126 1.289631 -0.6620815 0.7272934 2
19127 1.289631 -0.6620815 0.7272934 1
19128 1.289631 -0.6620815 0.7272934 2
19129 1.289631 -0.6620815 0.7272934 1
19130 1.289631 -0.6620815 0.7272934 1
19131 1.289631 -0.6620815 0.7272934 3
19132 1.289631 -0.6620815 0.7272934 2
19133 1.289631 -0.6620815 0.7272934 1
19134 1.289631 -0.6620815 0.7272934 3
19135 1.289631 -0.6620815 0.7272934 2
19136 1.289631 -0.6620815 0.7272934 1
19137 1.289631 -0.6620815 0.7272934 2
19138 1.289631 -0.6620815 0.7272934 3
19139 1.289631 -0.6620815 0.7272934 2
19140 1.289631 -0.6620815 0.7272934 1
19141 1.289631 -0.6620815 0.7272934 2
19142 1.289631 -0.6620815 0.7272934 2
19143 1.289631 -0.6620815 0.7272934 3
19144 1.289631 -0.6620815 0.7272934 2
19145 1.289631 -0.6620815 0.7272934 3
19146 1.289631 -0.6620815 0.7272934 2
19147 1.289631 -0.6620815 0.7272934 2
19148 1.289631 -0.6620815 0.7272934 3
19149 1.289631 -0.6620815 0.7272934 3
19150 1.289631 -0.6620815 0.7272934 3
19151 1.289631 -0.6620815 0.7272934 3
19152 1.289631 -0.6620815 0.7272934 2
19153 1.289631 -0.6620815 0.7272934 3
19154 1.289631 -0.6620815 0.7272934 2
19155 1.289631 -0.6620815 0.7272934 2
19156 1.289631 -0.6620815 0.7272934 1
19157 1.289631 -0.6620815 0.7272934 1
19158 1.289631 -0.6620815 0.7272934 2
19159 1.289631 -0.6620815 0.7272934 3
19160 1.289631 -0.6620815 0.7272934 3
19161 1.289631 -0.6620815 0.7272934 1
19162 1.289631 -0.6620815 0.7272934 3
19163 1.289631 -0.6620815 0.7272934 2
19164 1.289631 -0.6620815 0.7272934 2
19165 1.289631 -0.6620815 0.7272934 3
19166 1.289631 -0.6620815 0.7272934 3
19167 1.289631 -0.6620815 0.7272934 1
19168 1.289631 -0.6620815 0.7272934 1
19169 1.289631 -0.6620815 0.7272934 1
19170 1.289631 -0.6620815 0.7272934 2
19171 1.289631 -0.6620815 0.7272934 1
19172 1.289631 -0.6620815 0.7272934 1
19173 1.289631 -0.6620815 0.7272934 2
19174 1.289631 -0.6620815 0.7272934 3
19175 1.289631 -0.6620815 0.7272934 1
19176 1.289631 -0.6620815 0.7272934 3
19177 1.289631 -0.6620815 0.7272934 2
19178 1.289631 -0.6620815 0.7272934 3
19179 1.289631 -0.6620815 0.7272934 2
19180 1.289631 -0.6620815 0.7272934 1
19181 1.289631 -0.6620815 0.7272934 1
19182 1.289631 -0.6620815 0.7272934 1
19183 1.289631 -0.6620815 0.7272934 3
19184 1.289631 -0.6620815 0.7272934 3
19185 1.289631 -0.6620815 0.7272934 3
19186 1.289631 -0.6620815 0.7272934 3
19187 1.289631 -0.6620815 0.7272934 3
19188 1.289631 -0.6620815 0.7272934 1
19189 1.289631 -0.6620815 0.7272934 2
19190 1.289631 -0.6620815 0.7272934 1
19191 1.289631 -0.6620815 0.7272934 1
19192 1.289631 -0.6620815 0.7272934 2
19193 1.289631 -0.6620815 0.7272934 1
19194 1.289631 -0.6620815 0.7272934 3
19195 1.289631 -0.6620815 0.7272934 3
19196 1.289631 -0.6620815 0.7272934 1
19197 1.289631 -0.6620815 0.7272934 1
19198 1.289631 -0.6620815 0.7272934 3
19199 1.289631 -0.6620815 0.7272934 1
19200 1.289631 -0.6620815 0.7272934 2
19201 1.289631 -0.6620815 0.7272934 2
19202 1.289631 -0.6620815 0.7272934 1
19203 1.289631 -0.6620815 0.7272934 2
19204 1.289631 -0.6620815 0.7272934 1
19205 1.289631 -0.6620815 0.7272934 3
19206 1.289631 -0.6620815 0.7272934 1
19207 1.289631 -0.6620815 0.7272934 1
19208 1.289631 -0.6620815 0.7272934 1
19209 1.289631 -0.6620815 0.7272934 2
19210 1.289631 -0.6620815 0.7272934 1
19211 1.289631 -0.6620815 0.7272934 3
19212 1.289631 -0.6620815 0.7272934 3
19213 1.289631 -0.6620815 0.7272934 2
19214 1.289631 -0.6620815 0.7272934 3
19215 1.289631 -0.6620815 0.7272934 1
19216 1.289631 -0.6620815 0.7272934 1
19217 1.289631 -0.6620815 0.7272934 3
19218 1.289631 -0.6620815 0.7272934 1
19219 1.289631 -0.6620815 0.7272934 1
19220 1.289631 -0.6620815 0.7272934 3
19221 1.289631 -0.6620815 0.7272934 1
19222 1.289631 -0.6620815 0.7272934 2
19223 1.289631 -0.6620815 0.7272934 3
19224 1.289631 -0.6620815 0.7272934 3
19225 1.289631 -0.6620815 0.7272934 3
19226 1.289631 -0.6620815 0.7272934 2
19227 1.289631 -0.6620815 0.7272934 3
19228 1.289631 -0.6620815 0.7272934 1
19229 1.289631 -0.6620815 0.7272934 3
19230 1.289631 -0.6620815 0.7272934 1
19231 1.289631 -0.6620815 0.7272934 1
19232 1.289631 -0.6620815 0.7272934 1
19233 1.289631 -0.6620815 0.7272934 1
19234 1.289631 -0.6620815 0.7272934 1
19235 1.289631 -0.6620815 0.7272934 2
19236 1.289631 -0.6620815 0.7272934 3
19237 1.289631 -0.6620815 0.7272934 2
19238 1.289631 -0.6620815 0.7272934 3
19239 1.289631 -0.6620815 0.7272934 2
19240 1.289631 -0.6620815 0.7272934 2
19241 1.289631 -0.6620815 0.7272934 1
19242 1.289631 -0.6620815 0.7272934 3
19243 1.289631 -0.6620815 0.7272934 2
19244 1.289631 -0.6620815 0.7272934 1
19245 1.289631 -0.6620815 0.7272934 2
19246 1.289631 -0.6620815 0.7272934 3
19247 1.289631 -0.6620815 0.7272934 3
19248 1.289631 -0.6620815 0.7272934 1
19249 1.289631 -0.6620815 0.7272934 3
19250 1.289631 -0.6620815 0.7272934 1
19251 1.289631 -0.6620815 0.7272934 2
19252 1.289631 -0.6620815 0.7272934 2
19253 1.289631 -0.6620815 0.7272934 1
19254 1.289631 -0.6620815 0.7272934 3
19255 1.289631 -0.6620815 0.7272934 2
19256 1.289631 -0.6620815 0.7272934 3
19257 1.289631 -0.6620815 0.7272934 3
19258 1.289631 -0.6620815 0.7272934 3
19259 1.289631 -0.6620815 0.7272934 2
19260 1.289631 -0.6620815 0.7272934 3
19261 1.289631 -0.6620815 0.7272934 2
19262 1.289631 -0.6620815 0.7272934 2
19263 1.289631 -0.6620815 0.7272934 2
19264 1.289631 -0.6620815 0.7272934 1
19265 1.289631 -0.6620815 0.7272934 1
19266 1.289631 -0.6620815 0.7272934 3
19267 1.289631 -0.6620815 0.7272934 2
19268 1.289631 -0.6620815 0.7272934 3
19269 1.289631 -0.6620815 0.7272934 2
19270 1.289631 -0.6620815 0.7272934 2
19271 1.289631 -0.6620815 0.7272934 1
19272 1.289631 -0.6620815 0.7272934 1
19273 1.289631 -0.6620815 0.7272934 1
19274 1.289631 -0.6620815 0.7272934 3
19275 1.289631 -0.6620815 0.7272934 3
19276 1.289631 -0.6620815 0.7272934 1
19277 1.289631 -0.6620815 0.7272934 2
19278 1.289631 -0.6620815 0.7272934 1
19279 1.289631 -0.6620815 0.7272934 1
19280 1.289631 -0.6620815 0.7272934 2
19281 1.289631 -0.6620815 0.7272934 3
19282 1.289631 -0.6620815 0.7272934 3
19283 1.289631 -0.6620815 0.7272934 3
19284 1.289631 -0.6620815 0.7272934 2
19285 1.289631 -0.6620815 0.7272934 1
19286 1.289631 -0.6620815 0.7272934 1
19287 1.289631 -0.6620815 0.7272934 1
19288 1.289631 -0.6620815 0.7272934 3
19289 1.289631 -0.6620815 0.7272934 2
19290 1.289631 -0.6620815 0.7272934 3
19291 1.289631 -0.6620815 0.7272934 2
19292 1.289631 -0.6620815 0.7272934 1
19293 1.289631 -0.6620815 0.7272934 2
19294 1.289631 -0.6620815 0.7272934 1
19295 1.289631 -0.6620815 0.7272934 1
19296 1.289631 -0.6620815 0.7272934 1
19297 1.289631 -0.6620815 0.7272934 1
19298 1.289631 -0.6620815 0.7272934 3
19299 1.289631 -0.6620815 0.7272934 3
19300 1.289259 -0.6562963 0.7238301 1
19301 1.289259 -0.6562963 0.7238301 1
19302 1.289259 -0.6562963 0.7238301 3
19303 1.289259 -0.6562963 0.7238301 3
19304 1.289259 -0.6562963 0.7238301 1
19305 1.289259 -0.6562963 0.7238301 1
19306 1.289259 -0.6562963 0.7238301 2
19307 1.289259 -0.6562963 0.7238301 3
19308 1.289259 -0.6562963 0.7238301 3
19309 1.289259 -0.6562963 0.7238301 2
19310 1.289259 -0.6562963 0.7238301 1
19311 1.289259 -0.6562963 0.7238301 2
19312 1.289259 -0.6562963 0.7238301 1
19313 1.289259 -0.6562963 0.7238301 2
19314 1.289259 -0.6562963 0.7238301 1
19315 1.289259 -0.6562963 0.7238301 1
19316 1.289259 -0.6562963 0.7238301 2
19317 1.289259 -0.6562963 0.7238301 3
19318 1.289259 -0.6562963 0.7238301 2
19319 1.289259 -0.6562963 0.7238301 3
19320 1.289259 -0.6562963 0.7238301 1
19321 1.289259 -0.6562963 0.7238301 3
19322 1.289259 -0.6562963 0.7238301 2
19323 1.289259 -0.6562963 0.7238301 2
19324 1.289259 -0.6562963 0.7238301 2
19325 1.289259 -0.6562963 0.7238301 3
19326 1.289259 -0.6562963 0.7238301 2
19327 1.289259 -0.6562963 0.7238301 1
19328 1.289259 -0.6562963 0.7238301 2
19329 1.289259 -0.6562963 0.7238301 3
19330 1.289259 -0.6562963 0.7238301 3
19331 1.289259 -0.6562963 0.7238301 2
19332 1.289259 -0.6562963 0.7238301 2
19333 1.289259 -0.6562963 0.7238301 2
19334 1.289259 -0.6562963 0.7238301 1
19335 1.289259 -0.6562963 0.7238301 2
19336 1.289259 -0.6562963 0.7238301 1
19337 1.289259 -0.6562963 0.7238301 2
19338 1.289259 -0.6562963 0.7238301 1
19339 1.289259 -0.6562963 0.7238301 1
19340 1.289259 -0.6562963 0.7238301 2
19341 1.289259 -0.6562963 0.7238301 2
19342 1.289259 -0.6562963 0.7238301 1
19343 1.289259 -0.6562963 0.7238301 2
19344 1.289259 -0.6562963 0.7238301 3
19345 1.289259 -0.6562963 0.7238301 2
19346 1.289259 -0.6562963 0.7238301 3
19347 1.289259 -0.6562963 0.7238301 1
19348 1.289259 -0.6562963 0.7238301 2
19349 1.289259 -0.6562963 0.7238301 2
19350 1.289259 -0.6562963 0.7238301 1
19351 1.289259 -0.6562963 0.7238301 3
19352 1.289259 -0.6562963 0.7238301 1
19353 1.289259 -0.6562963 0.7238301 2
19354 1.289259 -0.6562963 0.7238301 2
19355 1.289259 -0.6562963 0.7238301 2
19356 1.289259 -0.6562963 0.7238301 3
19357 1.289259 -0.6562963 0.7238301 2
19358 1.289259 -0.6562963 0.7238301 1
19359 1.289259 -0.6562963 0.7238301 2
19360 1.289259 -0.6562963 0.7238301 3
19361 1.289259 -0.6562963 0.7238301 2
19362 1.289259 -0.6562963 0.7238301 2
19363 1.289259 -0.6562963 0.7238301 1
19364 1.289259 -0.6562963 0.7238301 2
19365 1.289259 -0.6562963 0.7238301 1
19366 1.289259 -0.6562963 0.7238301 2
19367 1.289259 -0.6562963 0.7238301 2
19368 1.289259 -0.6562963 0.7238301 2
19369 1.289259 -0.6562963 0.7238301 3
19370 1.289259 -0.6562963 0.7238301 3
19371 1.289259 -0.6562963 0.7238301 2
19372 1.289259 -0.6562963 0.7238301 3
19373 1.289259 -0.6562963 0.7238301 2
19374 1.289259 -0.6562963 0.7238301 3
19375 1.289259 -0.6562963 0.7238301 3
19376 1.289259 -0.6562963 0.7238301 1
19377 1.289259 -0.6562963 0.7238301 1
19378 1.289259 -0.6562963 0.7238301 3
19379 1.289259 -0.6562963 0.7238301 1
19380 1.289259 -0.6562963 0.7238301 1
19381 1.289259 -0.6562963 0.7238301 1
19382 1.289259 -0.6562963 0.7238301 1
19383 1.289259 -0.6562963 0.7238301 2
19384 1.289259 -0.6562963 0.7238301 3
19385 1.289259 -0.6562963 0.7238301 3
19386 1.289259 -0.6562963 0.7238301 1
19387 1.289259 -0.6562963 0.7238301 2
19388 1.289259 -0.6562963 0.7238301 1
19389 1.289259 -0.6562963 0.7238301 2
19390 1.289259 -0.6562963 0.7238301 1
19391 1.289259 -0.6562963 0.7238301 3
19392 1.289259 -0.6562963 0.7238301 3
19393 1.289259 -0.6562963 0.7238301 1
19394 1.289259 -0.6562963 0.7238301 3
19395 1.289259 -0.6562963 0.7238301 2
19396 1.289259 -0.6562963 0.7238301 3
19397 1.289259 -0.6562963 0.7238301 2
19398 1.289259 -0.6562963 0.7238301 3
19399 1.289259 -0.6562963 0.7238301 1
19400 1.289259 -0.6562963 0.7238301 1
19401 1.289259 -0.6562963 0.7238301 2
19402 1.289259 -0.6562963 0.7238301 3
19403 1.289259 -0.6562963 0.7238301 3
19404 1.289259 -0.6562963 0.7238301 1
19405 1.289259 -0.6562963 0.7238301 3
19406 1.289259 -0.6562963 0.7238301 1
19407 1.289259 -0.6562963 0.7238301 3
19408 1.289259 -0.6562963 0.7238301 3
19409 1.289259 -0.6562963 0.7238301 2
19410 1.289259 -0.6562963 0.7238301 2
19411 1.289259 -0.6562963 0.7238301 2
19412 1.289259 -0.6562963 0.7238301 2
19413 1.289259 -0.6562963 0.7238301 1
19414 1.289259 -0.6562963 0.7238301 3
19415 1.289259 -0.6562963 0.7238301 1
19416 1.289259 -0.6562963 0.7238301 2
19417 1.289259 -0.6562963 0.7238301 2
19418 1.289259 -0.6562963 0.7238301 3
19419 1.289259 -0.6562963 0.7238301 2
19420 1.289259 -0.6562963 0.7238301 3
19421 1.289259 -0.6562963 0.7238301 3
19422 1.289259 -0.6562963 0.7238301 2
19423 1.289259 -0.6562963 0.7238301 1
19424 1.289259 -0.6562963 0.7238301 2
19425 1.289259 -0.6562963 0.7238301 1
19426 1.289259 -0.6562963 0.7238301 3
19427 1.289259 -0.6562963 0.7238301 3
19428 1.289259 -0.6562963 0.7238301 2
19429 1.289259 -0.6562963 0.7238301 2
19430 1.289259 -0.6562963 0.7238301 2
19431 1.289259 -0.6562963 0.7238301 3
19432 1.289259 -0.6562963 0.7238301 2
19433 1.289259 -0.6562963 0.7238301 1
19434 1.289259 -0.6562963 0.7238301 1
19435 1.289259 -0.6562963 0.7238301 3
19436 1.289259 -0.6562963 0.7238301 1
19437 1.289259 -0.6562963 0.7238301 2
19438 1.289259 -0.6562963 0.7238301 3
19439 1.289259 -0.6562963 0.7238301 2
19440 1.289259 -0.6562963 0.7238301 1
19441 1.289259 -0.6562963 0.7238301 2
19442 1.289259 -0.6562963 0.7238301 3
19443 1.289259 -0.6562963 0.7238301 2
19444 1.289259 -0.6562963 0.7238301 2
19445 1.289259 -0.6562963 0.7238301 2
19446 1.289259 -0.6562963 0.7238301 2
19447 1.289259 -0.6562963 0.7238301 2
19448 1.289259 -0.6562963 0.7238301 1
19449 1.289259 -0.6562963 0.7238301 1
19450 1.289259 -0.6562963 0.7238301 2
19451 1.289259 -0.6562963 0.7238301 2
19452 1.289259 -0.6562963 0.7238301 3
19453 1.289259 -0.6562963 0.7238301 2
19454 1.289259 -0.6562963 0.7238301 1
19455 1.289259 -0.6562963 0.7238301 3
19456 1.289259 -0.6562963 0.7238301 2
19457 1.289259 -0.6562963 0.7238301 1
19458 1.289259 -0.6562963 0.7238301 3
19459 1.289259 -0.6562963 0.7238301 1
19460 1.289259 -0.6562963 0.7238301 2
19461 1.289259 -0.6562963 0.7238301 1
19462 1.289259 -0.6562963 0.7238301 2
19463 1.289259 -0.6562963 0.7238301 2
19464 1.289259 -0.6562963 0.7238301 2
19465 1.289259 -0.6562963 0.7238301 1
19466 1.289259 -0.6562963 0.7238301 2
19467 1.289259 -0.6562963 0.7238301 2
19468 1.289259 -0.6562963 0.7238301 2
19469 1.289259 -0.6562963 0.7238301 2
19470 1.289259 -0.6562963 0.7238301 1
19471 1.289259 -0.6562963 0.7238301 3
19472 1.289259 -0.6562963 0.7238301 2
19473 1.289259 -0.6562963 0.7238301 2
19474 1.289259 -0.6562963 0.7238301 1
19475 1.289259 -0.6562963 0.7238301 3
19476 1.289259 -0.6562963 0.7238301 3
19477 1.289259 -0.6562963 0.7238301 2
19478 1.289259 -0.6562963 0.7238301 1
19479 1.289259 -0.6562963 0.7238301 1
19480 1.289259 -0.6562963 0.7238301 1
19481 1.289259 -0.6562963 0.7238301 3
19482 1.289259 -0.6562963 0.7238301 2
19483 1.289259 -0.6562963 0.7238301 2
19484 1.289259 -0.6562963 0.7238301 2
19485 1.289259 -0.6562963 0.7238301 1
19486 1.289259 -0.6562963 0.7238301 3
19487 1.289259 -0.6562963 0.7238301 3
19488 1.289259 -0.6562963 0.7238301 3
19489 1.289259 -0.6562963 0.7238301 1
19490 1.289259 -0.6562963 0.7238301 1
19491 1.289259 -0.6562963 0.7238301 1
19492 1.289259 -0.6562963 0.7238301 3
19493 1.289259 -0.6562963 0.7238301 3
19494 1.289259 -0.6562963 0.7238301 3
19495 1.289259 -0.6562963 0.7238301 2
19496 1.289259 -0.6562963 0.7238301 1
19497 1.289259 -0.6562963 0.7238301 3
19498 1.289259 -0.6562963 0.7238301 1
19499 1.289259 -0.6562963 0.7238301 2
19500 1.289259 -0.6562963 0.7238301 2
19501 1.289259 -0.6562963 0.7238301 3
19502 1.289259 -0.6562963 0.7238301 3
19503 1.289259 -0.6562963 0.7238301 2
19504 1.289259 -0.6562963 0.7238301 2
19505 1.289259 -0.6562963 0.7238301 2
19506 1.289259 -0.6562963 0.7238301 1
19507 1.289259 -0.6562963 0.7238301 2
19508 1.289259 -0.6562963 0.7238301 1
19509 1.289259 -0.6562963 0.7238301 2
19510 1.289259 -0.6562963 0.7238301 2
19511 1.289259 -0.6562963 0.7238301 2
19512 1.289259 -0.6562963 0.7238301 2
19513 1.289259 -0.6562963 0.7238301 2
19514 1.289259 -0.6562963 0.7238301 2
19515 1.289259 -0.6562963 0.7238301 1
19516 1.289259 -0.6562963 0.7238301 1
19517 1.289259 -0.6562963 0.7238301 3
19518 1.289259 -0.6562963 0.7238301 3
19519 1.289259 -0.6562963 0.7238301 2
19520 1.289259 -0.6562963 0.7238301 2
19521 1.289259 -0.6562963 0.7238301 1
19522 1.289259 -0.6562963 0.7238301 3
19523 1.289259 -0.6562963 0.7238301 3
19524 1.289259 -0.6562963 0.7238301 3
19525 1.289259 -0.6562963 0.7238301 1
19526 1.289259 -0.6562963 0.7238301 1
19527 1.289259 -0.6562963 0.7238301 2
19528 1.289259 -0.6562963 0.7238301 1
19529 1.289259 -0.6562963 0.7238301 3
19530 1.289259 -0.6562963 0.7238301 1
19531 1.289259 -0.6562963 0.7238301 2
19532 1.289259 -0.6562963 0.7238301 3
19533 1.289259 -0.6562963 0.7238301 1
19534 1.289259 -0.6562963 0.7238301 1
19535 1.289259 -0.6562963 0.7238301 3
19536 1.289259 -0.6562963 0.7238301 2
19537 1.289259 -0.6562963 0.7238301 2
19538 1.289259 -0.6562963 0.7238301 2
19539 1.289259 -0.6562963 0.7238301 2
19540 1.289259 -0.6562963 0.7238301 1
19541 1.289259 -0.6562963 0.7238301 1
19542 1.289259 -0.6562963 0.7238301 2
19543 1.289259 -0.6562963 0.7238301 3
19544 1.289259 -0.6562963 0.7238301 1
19545 1.289259 -0.6562963 0.7238301 2
19546 1.289259 -0.6562963 0.7238301 3
19547 1.289259 -0.6562963 0.7238301 3
19548 1.289259 -0.6562963 0.7238301 1
19549 1.289259 -0.6562963 0.7238301 2
19550 1.289259 -0.6562963 0.7238301 1
19551 1.289259 -0.6562963 0.7238301 2
19552 1.289259 -0.6562963 0.7238301 1
19553 1.289259 -0.6562963 0.7238301 3
19554 1.289259 -0.6562963 0.7238301 1
19555 1.289259 -0.6562963 0.7238301 2
19556 1.289259 -0.6562963 0.7238301 2
19557 1.289259 -0.6562963 0.7238301 3
19558 1.289259 -0.6562963 0.7238301 2
19559 1.289259 -0.6562963 0.7238301 1
19560 1.289259 -0.6562963 0.7238301 1
19561 1.289259 -0.6562963 0.7238301 1
19562 1.289259 -0.6562963 0.7238301 1
19563 1.289259 -0.6562963 0.7238301 1
19564 1.289259 -0.6562963 0.7238301 1
19565 1.289259 -0.6562963 0.7238301 3
19566 1.289259 -0.6562963 0.7238301 2
19567 1.289259 -0.6562963 0.7238301 2
19568 1.289259 -0.6562963 0.7238301 2
19569 1.289259 -0.6562963 0.7238301 1
19570 1.289259 -0.6562963 0.7238301 3
19571 1.289259 -0.6562963 0.7238301 2
19572 1.289259 -0.6562963 0.7238301 3
19573 1.289259 -0.6562963 0.7238301 1
19574 1.289259 -0.6562963 0.7238301 3
19575 1.289259 -0.6562963 0.7238301 1
19576 1.289259 -0.6562963 0.7238301 3
19577 1.289259 -0.6562963 0.7238301 1
19578 1.289259 -0.6562963 0.7238301 2
19579 1.289259 -0.6562963 0.7238301 2
19580 1.289259 -0.6562963 0.7238301 3
19581 1.289259 -0.6562963 0.7238301 2
19582 1.289259 -0.6562963 0.7238301 2
19583 1.289259 -0.6562963 0.7238301 3
19584 1.289259 -0.6562963 0.7238301 1
19585 1.289259 -0.6562963 0.7238301 3
19586 1.289259 -0.6562963 0.7238301 1
19587 1.289259 -0.6562963 0.7238301 2
19588 1.289259 -0.6562963 0.7238301 1
19589 1.289259 -0.6562963 0.7238301 2
19590 1.289259 -0.6562963 0.7238301 2
19591 1.289259 -0.6562963 0.7238301 1
19592 1.289259 -0.6562963 0.7238301 3
19593 1.289259 -0.6562963 0.7238301 2
19594 1.289259 -0.6562963 0.7238301 3
19595 1.289259 -0.6562963 0.7238301 3
19596 1.289259 -0.6562963 0.7238301 2
19597 1.289259 -0.6562963 0.7238301 2
19598 1.289259 -0.6562963 0.7238301 3
19599 1.289259 -0.6562963 0.7238301 3
19600 1.289259 -0.6562963 0.7238301 1
19601 1.289259 -0.6562963 0.7238301 2
19602 1.289259 -0.6562963 0.7238301 1
19603 1.289259 -0.6562963 0.7238301 3
19604 1.289259 -0.6562963 0.7238301 2
19605 1.289259 -0.6562963 0.7238301 1
19606 1.289259 -0.6562963 0.7238301 1
19607 1.289259 -0.6562963 0.7238301 3
19608 1.289259 -0.6562963 0.7238301 1
19609 1.289259 -0.6562963 0.7238301 2
19610 1.289259 -0.6562963 0.7238301 2
19611 1.289259 -0.6562963 0.7238301 3
19612 1.289259 -0.6562963 0.7238301 2
19613 1.289259 -0.6562963 0.7238301 3
19614 1.289259 -0.6562963 0.7238301 1
19615 1.289259 -0.6562963 0.7238301 1
19616 1.289259 -0.6562963 0.7238301 3
19617 1.289259 -0.6562963 0.7238301 2
19618 1.289259 -0.6562963 0.7238301 3
19619 1.289259 -0.6562963 0.7238301 1
19620 1.289259 -0.6562963 0.7238301 3
19621 1.289259 -0.6562963 0.7238301 2
19622 1.289259 -0.6562963 0.7238301 3
19623 1.289259 -0.6562963 0.7238301 1
19624 1.289259 -0.6562963 0.7238301 2
19625 1.289259 -0.6562963 0.7238301 3
19626 1.289259 -0.6562963 0.7238301 1
19627 1.289259 -0.6562963 0.7238301 1
19628 1.289259 -0.6562963 0.7238301 3
19629 1.289259 -0.6562963 0.7238301 2
19630 1.289259 -0.6562963 0.7238301 1
19631 1.289259 -0.6562963 0.7238301 1
19632 1.289259 -0.6562963 0.7238301 1
19633 1.289259 -0.6562963 0.7238301 3
19634 1.289259 -0.6562963 0.7238301 1
19635 1.289259 -0.6562963 0.7238301 3
19636 1.289259 -0.6562963 0.7238301 1
19637 1.289259 -0.6562963 0.7238301 1
19638 1.289259 -0.6562963 0.7238301 3
19639 1.289259 -0.6562963 0.7238301 2
19640 1.289259 -0.6562963 0.7238301 1
19641 1.289259 -0.6562963 0.7238301 2
19642 1.289259 -0.6562963 0.7238301 2
19643 1.289259 -0.6562963 0.7238301 3
19644 1.289259 -0.6562963 0.7238301 1
19645 1.289259 -0.6562963 0.7238301 3
19646 1.289259 -0.6562963 0.7238301 3
19647 1.289259 -0.6562963 0.7238301 1
19648 1.289259 -0.6562963 0.7238301 3
19649 1.289259 -0.6562963 0.7238301 3
19650 1.289259 -0.6562963 0.7238301 2
19651 1.289259 -0.6562963 0.7238301 2
19652 1.289259 -0.6562963 0.7238301 3
19653 1.289259 -0.6562963 0.7238301 2
19654 1.289259 -0.6562963 0.7238301 1
19655 1.289259 -0.6562963 0.7238301 1
19656 1.289259 -0.6562963 0.7238301 1
19657 1.289259 -0.6562963 0.7238301 3
19658 1.289259 -0.6562963 0.7238301 1
19659 1.289259 -0.6562963 0.7238301 2
19660 1.289259 -0.6562963 0.7238301 2
19661 1.289259 -0.6562963 0.7238301 2
19662 1.289259 -0.6562963 0.7238301 2
19663 1.289259 -0.6562963 0.7238301 1
19664 1.289259 -0.6562963 0.7238301 3
19665 1.289259 -0.6562963 0.7238301 1
19666 1.289259 -0.6562963 0.7238301 2
19667 1.289259 -0.6562963 0.7238301 3
19668 1.289259 -0.6562963 0.7238301 1
19669 1.289259 -0.6562963 0.7238301 3
19670 1.289259 -0.6562963 0.7238301 3
19671 1.289259 -0.6562963 0.7238301 1
19672 1.289259 -0.6562963 0.7238301 1
19673 1.289259 -0.6562963 0.7238301 3
19674 1.289259 -0.6562963 0.7238301 2
19675 1.289259 -0.6562963 0.7238301 2
19676 1.289259 -0.6562963 0.7238301 1
19677 1.289259 -0.6562963 0.7238301 3
19678 1.289259 -0.6562963 0.7238301 3
19679 1.289259 -0.6562963 0.7238301 2
19680 1.289259 -0.6562963 0.7238301 2
19681 1.289259 -0.6562963 0.7238301 2
19682 1.289259 -0.6562963 0.7238301 1
19683 1.289259 -0.6562963 0.7238301 2
19684 1.289259 -0.6562963 0.7238301 1
19685 1.289259 -0.6562963 0.7238301 3
19686 1.289259 -0.6562963 0.7238301 3
19687 1.289259 -0.6562963 0.7238301 3
19688 1.289259 -0.6562963 0.7238301 1
19689 1.289259 -0.6562963 0.7238301 2
19690 1.289259 -0.6562963 0.7238301 1
19691 1.289259 -0.6562963 0.7238301 2
19692 1.289259 -0.6562963 0.7238301 3
19693 1.289259 -0.6562963 0.7238301 1
19694 1.289259 -0.6562963 0.7238301 3
19695 1.289259 -0.6562963 0.7238301 1
19696 1.289259 -0.6562963 0.7238301 1
19697 1.289259 -0.6562963 0.7238301 2
19698 1.289259 -0.6562963 0.7238301 3
19699 1.289259 -0.6562963 0.7238301 2
19700 1.289259 -0.6562963 0.7238301 2
19701 1.289259 -0.6562963 0.7238301 3
19702 1.289259 -0.6562963 0.7238301 2
19703 1.289259 -0.6562963 0.7238301 3
19704 1.289259 -0.6562963 0.7238301 2
19705 1.289259 -0.6562963 0.7238301 1
19706 1.289259 -0.6562963 0.7238301 3
19707 1.289259 -0.6562963 0.7238301 2
19708 1.289259 -0.6562963 0.7238301 2
19709 1.289259 -0.6562963 0.7238301 1
19710 1.289259 -0.6562963 0.7238301 1
19711 1.289259 -0.6562963 0.7238301 1
19712 1.289259 -0.6562963 0.7238301 3
19713 1.289259 -0.6562963 0.7238301 3
19714 1.289259 -0.6562963 0.7238301 2
19715 1.289259 -0.6562963 0.7238301 3
19716 1.289259 -0.6562963 0.7238301 2
19717 1.289259 -0.6562963 0.7238301 2
19718 1.289259 -0.6562963 0.7238301 3
19719 1.289259 -0.6562963 0.7238301 2
19720 1.289259 -0.6562963 0.7238301 1
19721 1.289259 -0.6562963 0.7238301 3
19722 1.289259 -0.6562963 0.7238301 1
19723 1.289259 -0.6562963 0.7238301 2
19724 1.289259 -0.6562963 0.7238301 3
19725 1.289259 -0.6562963 0.7238301 1
19726 1.289259 -0.6562963 0.7238301 1
19727 1.289259 -0.6562963 0.7238301 3
19728 1.289259 -0.6562963 0.7238301 3
19729 1.289259 -0.6562963 0.7238301 2
19730 1.289259 -0.6562963 0.7238301 1
19731 1.289259 -0.6562963 0.7238301 2
19732 1.289259 -0.6562963 0.7238301 3
19733 1.289259 -0.6562963 0.7238301 3
19734 1.289259 -0.6562963 0.7238301 3
19735 1.289259 -0.6562963 0.7238301 1
19736 1.289259 -0.6562963 0.7238301 3
19737 1.289259 -0.6562963 0.7238301 2
19738 1.289259 -0.6562963 0.7238301 3
19739 1.289259 -0.6562963 0.7238301 3
19740 1.289259 -0.6562963 0.7238301 2
19741 1.289259 -0.6562963 0.7238301 2
19742 1.289259 -0.6562963 0.7238301 3
19743 1.289259 -0.6562963 0.7238301 1
19744 1.289259 -0.6562963 0.7238301 1
19745 1.289259 -0.6562963 0.7238301 3
19746 1.289259 -0.6562963 0.7238301 1
19747 1.289259 -0.6562963 0.7238301 3
19748 1.289259 -0.6562963 0.7238301 1
19749 1.289259 -0.6562963 0.7238301 2
19750 1.289259 -0.6562963 0.7238301 3
19751 1.289259 -0.6562963 0.7238301 2
19752 1.289259 -0.6562963 0.7238301 3
19753 1.289259 -0.6562963 0.7238301 3
19754 1.289259 -0.6562963 0.7238301 3
19755 1.289259 -0.6562963 0.7238301 1
19756 1.289259 -0.6562963 0.7238301 2
19757 1.289259 -0.6562963 0.7238301 3
19758 1.289259 -0.6562963 0.7238301 2
19759 1.289259 -0.6562963 0.7238301 3
19760 1.289259 -0.6562963 0.7238301 2
19761 1.289259 -0.6562963 0.7238301 3
19762 1.289259 -0.6562963 0.7238301 2
19763 1.289259 -0.6562963 0.7238301 1
19764 1.289259 -0.6562963 0.7238301 3
19765 1.289259 -0.6562963 0.7238301 1
19766 1.289259 -0.6562963 0.7238301 1
19767 1.289259 -0.6562963 0.7238301 2
19768 1.289259 -0.6562963 0.7238301 2
19769 1.289259 -0.6562963 0.7238301 2
19770 1.289259 -0.6562963 0.7238301 1
19771 1.289259 -0.6562963 0.7238301 2
19772 1.289259 -0.6562963 0.7238301 3
19773 1.289259 -0.6562963 0.7238301 3
19774 1.289259 -0.6562963 0.7238301 1
19775 1.289259 -0.6562963 0.7238301 1
19776 1.289259 -0.6562963 0.7238301 2
19777 1.289259 -0.6562963 0.7238301 1
19778 1.289259 -0.6562963 0.7238301 3
19779 1.289259 -0.6562963 0.7238301 2
19780 1.289259 -0.6562963 0.7238301 2
19781 1.289259 -0.6562963 0.7238301 3
19782 1.289259 -0.6562963 0.7238301 2
19783 1.289259 -0.6562963 0.7238301 2
19784 1.289259 -0.6562963 0.7238301 2
19785 1.289259 -0.6562963 0.7238301 1
19786 1.289259 -0.6562963 0.7238301 1
19787 1.289259 -0.6562963 0.7238301 1
19788 1.289259 -0.6562963 0.7238301 1
19789 1.289259 -0.6562963 0.7238301 3
19790 1.289259 -0.6562963 0.7238301 2
19791 1.289259 -0.6562963 0.7238301 3
19792 1.289259 -0.6562963 0.7238301 1
19793 1.289259 -0.6562963 0.7238301 3
19794 1.289259 -0.6562963 0.7238301 2
19795 1.289259 -0.6562963 0.7238301 2
19796 1.289259 -0.6562963 0.7238301 2
19797 1.289259 -0.6562963 0.7238301 3
19798 1.289259 -0.6562963 0.7238301 1
19799 1.289259 -0.6562963 0.7238301 1
19800 1.289259 -0.6562963 0.7238301 3
19801 1.289259 -0.6562963 0.7238301 3
19802 1.289259 -0.6562963 0.7238301 2
19803 1.289259 -0.6562963 0.7238301 3
19804 1.289259 -0.6562963 0.7238301 2
19805 1.289259 -0.6562963 0.7238301 1
19806 1.289259 -0.6562963 0.7238301 2
19807 1.289259 -0.6562963 0.7238301 1
19808 1.289259 -0.6562963 0.7238301 2
19809 1.289259 -0.6562963 0.7238301 3
19810 1.289259 -0.6562963 0.7238301 3
19811 1.289259 -0.6562963 0.7238301 1
19812 1.289259 -0.6562963 0.7238301 3
19813 1.289259 -0.6562963 0.7238301 1
19814 1.289259 -0.6562963 0.7238301 2
19815 1.289259 -0.6562963 0.7238301 1
19816 1.289259 -0.6562963 0.7238301 2
19817 1.289259 -0.6562963 0.7238301 3
19818 1.289259 -0.6562963 0.7238301 1
19819 1.289259 -0.6562963 0.7238301 2
19820 1.289259 -0.6562963 0.7238301 3
19821 1.289259 -0.6562963 0.7238301 3
19822 1.289259 -0.6562963 0.7238301 3
19823 1.289259 -0.6562963 0.7238301 2
19824 1.289259 -0.6562963 0.7238301 3
19825 1.289259 -0.6562963 0.7238301 1
19826 1.289259 -0.6562963 0.7238301 2
19827 1.289259 -0.6562963 0.7238301 2
19828 1.289259 -0.6562963 0.7238301 2
19829 1.289259 -0.6562963 0.7238301 1
19830 1.289259 -0.6562963 0.7238301 1
19831 1.289259 -0.6562963 0.7238301 2
19832 1.289259 -0.6562963 0.7238301 2
19833 1.289259 -0.6562963 0.7238301 3
19834 1.289259 -0.6562963 0.7238301 3
19835 1.289259 -0.6562963 0.7238301 1
19836 1.289259 -0.6562963 0.7238301 3
19837 1.289259 -0.6562963 0.7238301 1
19838 1.289259 -0.6562963 0.7238301 2
19839 1.289259 -0.6562963 0.7238301 3
19840 1.289259 -0.6562963 0.7238301 2
19841 1.289259 -0.6562963 0.7238301 2
19842 1.289259 -0.6562963 0.7238301 1
19843 1.289259 -0.6562963 0.7238301 1
19844 1.289259 -0.6562963 0.7238301 2
19845 1.289259 -0.6562963 0.7238301 1
19846 1.289259 -0.6562963 0.7238301 3
19847 1.289259 -0.6562963 0.7238301 2
19848 1.289259 -0.6562963 0.7238301 1
19849 1.289259 -0.6562963 0.7238301 3
19850 1.289259 -0.6562963 0.7238301 3
19851 1.289259 -0.6562963 0.7238301 2
19852 1.289259 -0.6562963 0.7238301 3
19853 1.289259 -0.6562963 0.7238301 3
19854 1.289259 -0.6562963 0.7238301 1
19855 1.289259 -0.6562963 0.7238301 3
19856 1.289259 -0.6562963 0.7238301 1
19857 1.289259 -0.6562963 0.7238301 1
19858 1.289259 -0.6562963 0.7238301 3
19859 1.289259 -0.6562963 0.7238301 1
19860 1.289259 -0.6562963 0.7238301 1
19861 1.289259 -0.6562963 0.7238301 1
19862 1.289259 -0.6562963 0.7238301 2
19863 1.289259 -0.6562963 0.7238301 3
19864 1.289259 -0.6562963 0.7238301 3
19865 1.289259 -0.6562963 0.7238301 3
19866 1.289259 -0.6562963 0.7238301 3
19867 1.289259 -0.6562963 0.7238301 2
19868 1.289259 -0.6562963 0.7238301 2
19869 1.289259 -0.6562963 0.7238301 3
19870 1.289259 -0.6562963 0.7238301 2
19871 1.289259 -0.6562963 0.7238301 3
19872 1.289259 -0.6562963 0.7238301 1
19873 1.289259 -0.6562963 0.7238301 1
19874 1.289259 -0.6562963 0.7238301 2
19875 1.289259 -0.6562963 0.7238301 1
19876 1.289259 -0.6562963 0.7238301 2
19877 1.289259 -0.6562963 0.7238301 2
19878 1.289259 -0.6562963 0.7238301 3
19879 1.289259 -0.6562963 0.7238301 3
19880 1.289259 -0.6562963 0.7238301 1
19881 1.289259 -0.6562963 0.7238301 1
19882 1.289259 -0.6562963 0.7238301 3
19883 1.289259 -0.6562963 0.7238301 3
19884 1.289259 -0.6562963 0.7238301 2
19885 1.289259 -0.6562963 0.7238301 2
19886 1.289259 -0.6562963 0.7238301 2
19887 1.289259 -0.6562963 0.7238301 1
19888 1.289259 -0.6562963 0.7238301 2
19889 1.289259 -0.6562963 0.7238301 1
19890 1.289259 -0.6562963 0.7238301 2
19891 1.289259 -0.6562963 0.7238301 1
19892 1.289259 -0.6562963 0.7238301 2
19893 1.289259 -0.6562963 0.7238301 3
19894 1.289259 -0.6562963 0.7238301 3
19895 1.289259 -0.6562963 0.7238301 2
19896 1.289259 -0.6562963 0.7238301 1
19897 1.289259 -0.6562963 0.7238301 1
19898 1.289259 -0.6562963 0.7238301 2
19899 1.289259 -0.6562963 0.7238301 2
19900 1.289259 -0.6562963 0.7238301 3
19901 1.289259 -0.6562963 0.7238301 3
19902 1.289259 -0.6562963 0.7238301 2
19903 1.289259 -0.6562963 0.7238301 2
19904 1.289259 -0.6562963 0.7238301 3
19905 1.289259 -0.6562963 0.7238301 3
19906 1.289259 -0.6562963 0.7238301 3
19907 1.289259 -0.6562963 0.7238301 1
19908 1.289259 -0.6562963 0.7238301 2
19909 1.289259 -0.6562963 0.7238301 3
19910 1.289259 -0.6562963 0.7238301 2
19911 1.289259 -0.6562963 0.7238301 3
19912 1.289259 -0.6562963 0.7238301 3
19913 1.289259 -0.6562963 0.7238301 2
19914 1.289259 -0.6562963 0.7238301 3
19915 1.289259 -0.6562963 0.7238301 1
19916 1.289259 -0.6562963 0.7238301 3
19917 1.289259 -0.6562963 0.7238301 2
19918 1.289259 -0.6562963 0.7238301 2
19919 1.289259 -0.6562963 0.7238301 3
19920 1.289259 -0.6562963 0.7238301 1
19921 1.289259 -0.6562963 0.7238301 1
19922 1.289259 -0.6562963 0.7238301 3
19923 1.289259 -0.6562963 0.7238301 2
19924 1.289259 -0.6562963 0.7238301 3
19925 1.289259 -0.6562963 0.7238301 2
19926 1.289259 -0.6562963 0.7238301 2
19927 1.289259 -0.6562963 0.7238301 2
19928 1.289259 -0.6562963 0.7238301 3
19929 1.289259 -0.6562963 0.7238301 1
19930 1.289259 -0.6562963 0.7238301 1
19931 1.289259 -0.6562963 0.7238301 2
19932 1.289259 -0.6562963 0.7238301 3
19933 1.289259 -0.6562963 0.7238301 3
19934 1.289259 -0.6562963 0.7238301 3
19935 1.289259 -0.6562963 0.7238301 3
19936 1.289259 -0.6562963 0.7238301 2
19937 1.289259 -0.6562963 0.7238301 1
19938 1.289259 -0.6562963 0.7238301 1
19939 1.289259 -0.6562963 0.7238301 1
19940 1.289259 -0.6562963 0.7238301 1
19941 1.289259 -0.6562963 0.7238301 2
19942 1.289259 -0.6562963 0.7238301 2
19943 1.289259 -0.6562963 0.7238301 2
19944 1.289259 -0.6562963 0.7238301 2
19945 1.289259 -0.6562963 0.7238301 3
19946 1.289259 -0.6562963 0.7238301 1
19947 1.289259 -0.6562963 0.7238301 1
19948 1.289259 -0.6562963 0.7238301 1
19949 1.289259 -0.6562963 0.7238301 2
19950 1.289259 -0.6562963 0.7238301 3
19951 1.289259 -0.6562963 0.7238301 2
19952 1.289259 -0.6562963 0.7238301 2
19953 1.289259 -0.6562963 0.7238301 2
19954 1.289259 -0.6562963 0.7238301 2
19955 1.289259 -0.6562963 0.7238301 2
19956 1.289259 -0.6562963 0.7238301 3
19957 1.289259 -0.6562963 0.7238301 2
19958 1.289259 -0.6562963 0.7238301 1
19959 1.289259 -0.6562963 0.7238301 3
19960 1.289259 -0.6562963 0.7238301 1
19961 1.289259 -0.6562963 0.7238301 2
19962 1.289259 -0.6562963 0.7238301 3
19963 1.289259 -0.6562963 0.7238301 3
19964 1.289259 -0.6562963 0.7238301 1
19965 1.289259 -0.6562963 0.7238301 1
19966 1.289259 -0.6562963 0.7238301 1
19967 1.289259 -0.6562963 0.7238301 1
19968 1.289259 -0.6562963 0.7238301 2
19969 1.289259 -0.6562963 0.7238301 2
19970 1.289259 -0.6562963 0.7238301 3
19971 1.289259 -0.6562963 0.7238301 2
19972 1.289259 -0.6562963 0.7238301 1
19973 1.289259 -0.6562963 0.7238301 1
19974 1.289259 -0.6562963 0.7238301 1
19975 1.289259 -0.6562963 0.7238301 2
19976 1.289259 -0.6562963 0.7238301 2
19977 1.289259 -0.6562963 0.7238301 3
19978 1.289259 -0.6562963 0.7238301 3
19979 1.289259 -0.6562963 0.7238301 3
19980 1.289259 -0.6562963 0.7238301 1
19981 1.289259 -0.6562963 0.7238301 1
19982 1.289259 -0.6562963 0.7238301 2
19983 1.289259 -0.6562963 0.7238301 3
19984 1.289259 -0.6562963 0.7238301 3
19985 1.289259 -0.6562963 0.7238301 1
19986 1.289259 -0.6562963 0.7238301 3
19987 1.289259 -0.6562963 0.7238301 2
19988 1.289259 -0.6562963 0.7238301 1
19989 1.289259 -0.6562963 0.7238301 3
19990 1.289259 -0.6562963 0.7238301 2
19991 1.289259 -0.6562963 0.7238301 2
19992 1.289259 -0.6562963 0.7238301 1
19993 1.289259 -0.6562963 0.7238301 1
19994 1.289259 -0.6562963 0.7238301 2
19995 1.289259 -0.6562963 0.7238301 3
19996 1.289259 -0.6562963 0.7238301 3
19997 1.289259 -0.6562963 0.7238301 1
19998 1.289259 -0.6562963 0.7238301 2
19999 1.289259 -0.6562963 0.7238301 3
20000 1.289259 -0.6562963 0.7238301 3
20001 1.289259 -0.6562963 0.7238301 3
20002 1.289259 -0.6562963 0.7238301 3
20003 1.289259 -0.6562963 0.7238301 3
20004 1.289259 -0.6562963 0.7238301 3
20005 1.289259 -0.6562963 0.7238301 1
20006 1.289259 -0.6562963 0.7238301 2
20007 1.289259 -0.6562963 0.7238301 2
20008 1.289259 -0.6562963 0.7238301 1
20009 1.289259 -0.6562963 0.7238301 1
20010 1.289259 -0.6562963 0.7238301 1
20011 1.289259 -0.6562963 0.7238301 2
20012 1.289259 -0.6562963 0.7238301 3
20013 1.289259 -0.6562963 0.7238301 2
20014 1.289259 -0.6562963 0.7238301 1
20015 1.289259 -0.6562963 0.7238301 3
20016 1.289259 -0.6562963 0.7238301 3
20017 1.289259 -0.6562963 0.7238301 2
20018 1.289259 -0.6562963 0.7238301 2
20019 1.289259 -0.6562963 0.7238301 1
20020 1.289259 -0.6562963 0.7238301 1
20021 1.289259 -0.6562963 0.7238301 1
20022 1.289259 -0.6562963 0.7238301 2
20023 1.289259 -0.6562963 0.7238301 1
20024 1.289259 -0.6562963 0.7238301 2
20025 1.289259 -0.6562963 0.7238301 1
20026 1.289259 -0.6562963 0.7238301 1
20027 1.289259 -0.6562963 0.7238301 1
20028 1.289259 -0.6562963 0.7238301 1
20029 1.289259 -0.6562963 0.7238301 2
20030 1.289259 -0.6562963 0.7238301 3
20031 1.289259 -0.6562963 0.7238301 1
20032 1.289259 -0.6562963 0.7238301 1
20033 1.289259 -0.6562963 0.7238301 1
20034 1.289259 -0.6562963 0.7238301 1
20035 1.289259 -0.6562963 0.7238301 1
20036 1.289259 -0.6562963 0.7238301 1
20037 1.289259 -0.6562963 0.7238301 1
20038 1.289259 -0.6562963 0.7238301 3
20039 1.289259 -0.6562963 0.7238301 1
20040 1.289259 -0.6562963 0.7238301 2
20041 1.289259 -0.6562963 0.7238301 2
20042 1.289259 -0.6562963 0.7238301 1
20043 1.289259 -0.6562963 0.7238301 3
20044 1.289259 -0.6562963 0.7238301 1
20045 1.289259 -0.6562963 0.7238301 2
20046 1.289259 -0.6562963 0.7238301 2
20047 1.289259 -0.6562963 0.7238301 3
20048 1.289259 -0.6562963 0.7238301 2
20049 1.289259 -0.6562963 0.7238301 2
20050 1.289259 -0.6562963 0.7238301 3
20051 1.289259 -0.6562963 0.7238301 3
20052 1.289259 -0.6562963 0.7238301 2
20053 1.289259 -0.6562963 0.7238301 2
20054 1.289259 -0.6562963 0.7238301 2
20055 1.289259 -0.6562963 0.7238301 3
20056 1.289259 -0.6562963 0.7238301 3
20057 1.289259 -0.6562963 0.7238301 2
20058 1.289259 -0.6562963 0.7238301 2
20059 1.289259 -0.6562963 0.7238301 2
20060 1.289259 -0.6562963 0.7238301 3
20061 1.289259 -0.6562963 0.7238301 2
20062 1.289259 -0.6562963 0.7238301 2
20063 1.289259 -0.6562963 0.7238301 1
20064 1.289259 -0.6562963 0.7238301 3
20065 1.289259 -0.6562963 0.7238301 2
20066 1.289259 -0.6562963 0.7238301 2
20067 1.289259 -0.6562963 0.7238301 3
20068 1.289259 -0.6562963 0.7238301 1
20069 1.289259 -0.6562963 0.7238301 1
20070 1.289259 -0.6562963 0.7238301 2
20071 1.289259 -0.6562963 0.7238301 2
20072 1.289259 -0.6562963 0.7238301 1
20073 1.289259 -0.6562963 0.7238301 1
20074 1.289259 -0.6562963 0.7238301 1
20075 1.289259 -0.6562963 0.7238301 3
20076 1.289259 -0.6562963 0.7238301 1
20077 1.289259 -0.6562963 0.7238301 1
20078 1.289259 -0.6562963 0.7238301 1
20079 1.289259 -0.6562963 0.7238301 1
20080 1.289259 -0.6562963 0.7238301 1
20081 1.289259 -0.6562963 0.7238301 2
20082 1.289259 -0.6562963 0.7238301 1
20083 1.289259 -0.6562963 0.7238301 2
20084 1.289259 -0.6562963 0.7238301 1
20085 1.289259 -0.6562963 0.7238301 2
20086 1.289259 -0.6562963 0.7238301 3
20087 1.289259 -0.6562963 0.7238301 3
20088 1.289259 -0.6562963 0.7238301 3
20089 1.289259 -0.6562963 0.7238301 3
20090 1.289259 -0.6562963 0.7238301 2
20091 1.289259 -0.6562963 0.7238301 1
20092 1.289259 -0.6562963 0.7238301 3
20093 1.289259 -0.6562963 0.7238301 3
20094 1.289259 -0.6562963 0.7238301 2
20095 1.289259 -0.6562963 0.7238301 1
20096 1.289259 -0.6562963 0.7238301 1
20097 1.289259 -0.6562963 0.7238301 2
20098 1.289259 -0.6562963 0.7238301 3
20099 1.289259 -0.6562963 0.7238301 1
20100 1.289259 -0.6562963 0.7238301 1
20101 1.289259 -0.6562963 0.7238301 3
20102 1.289259 -0.6562963 0.7238301 2
20103 1.289259 -0.6562963 0.7238301 2
20104 1.289259 -0.6562963 0.7238301 3
20105 1.289259 -0.6562963 0.7238301 3
20106 1.289259 -0.6562963 0.7238301 3
20107 1.289259 -0.6562963 0.7238301 1
20108 1.289259 -0.6562963 0.7238301 3
20109 1.289259 -0.6562963 0.7238301 3
20110 1.289259 -0.6562963 0.7238301 2
20111 1.289259 -0.6562963 0.7238301 2
20112 1.289259 -0.6562963 0.7238301 3
20113 1.289259 -0.6562963 0.7238301 3
20114 1.289259 -0.6562963 0.7238301 2
20115 1.289259 -0.6562963 0.7238301 2
20116 1.289259 -0.6562963 0.7238301 3
20117 1.289259 -0.6562963 0.7238301 1
20118 1.289259 -0.6562963 0.7238301 3
20119 1.289259 -0.6562963 0.7238301 1
20120 1.289259 -0.6562963 0.7238301 3
20121 1.289259 -0.6562963 0.7238301 2
20122 1.289259 -0.6562963 0.7238301 2
20123 1.289259 -0.6562963 0.7238301 3
20124 1.289259 -0.6562963 0.7238301 2
20125 1.289259 -0.6562963 0.7238301 3
20126 1.289259 -0.6562963 0.7238301 2
20127 1.289259 -0.6562963 0.7238301 3
20128 1.289259 -0.6562963 0.7238301 2
20129 1.289259 -0.6562963 0.7238301 1
20130 1.289259 -0.6562963 0.7238301 1
20131 1.289259 -0.6562963 0.7238301 1
20132 1.289259 -0.6562963 0.7238301 2
20133 1.289259 -0.6562963 0.7238301 3
20134 1.289259 -0.6562963 0.7238301 2
20135 1.289259 -0.6562963 0.7238301 2
20136 1.289259 -0.6562963 0.7238301 3
20137 1.289259 -0.6562963 0.7238301 1
20138 1.289259 -0.6562963 0.7238301 2
20139 1.289259 -0.6562963 0.7238301 3
20140 1.289259 -0.6562963 0.7238301 2
20141 1.289259 -0.6562963 0.7238301 2
20142 1.289259 -0.6562963 0.7238301 2
20143 1.289259 -0.6562963 0.7238301 1
20144 1.289259 -0.6562963 0.7238301 2
20145 1.289259 -0.6562963 0.7238301 1
20146 1.289259 -0.6562963 0.7238301 1
20147 1.289259 -0.6562963 0.7238301 1
20148 1.289259 -0.6562963 0.7238301 2
20149 1.289259 -0.6562963 0.7238301 3
20150 1.289259 -0.6562963 0.7238301 3
20151 1.289259 -0.6562963 0.7238301 2
20152 1.289259 -0.6562963 0.7238301 1
20153 1.289259 -0.6562963 0.7238301 1
20154 1.289259 -0.6562963 0.7238301 1
20155 1.289259 -0.6562963 0.7238301 3
20156 1.289259 -0.6562963 0.7238301 1
20157 1.289259 -0.6562963 0.7238301 2
20158 1.289259 -0.6562963 0.7238301 2
20159 1.289259 -0.6562963 0.7238301 3
20160 1.289259 -0.6562963 0.7238301 2
20161 1.289259 -0.6562963 0.7238301 3
20162 1.289259 -0.6562963 0.7238301 1
20163 1.289259 -0.6562963 0.7238301 2
20164 1.289259 -0.6562963 0.7238301 1
20165 1.289259 -0.6562963 0.7238301 2
20166 1.289259 -0.6562963 0.7238301 3
20167 1.289259 -0.6562963 0.7238301 1
20168 1.289259 -0.6562963 0.7238301 2
20169 1.289259 -0.6562963 0.7238301 2
20170 1.289259 -0.6562963 0.7238301 2
20171 1.289259 -0.6562963 0.7238301 1
20172 1.289259 -0.6562963 0.7238301 1
20173 1.289259 -0.6562963 0.7238301 1
20174 1.289259 -0.6562963 0.7238301 3
20175 1.289259 -0.6562963 0.7238301 3
20176 1.289259 -0.6562963 0.7238301 2
20177 1.289259 -0.6562963 0.7238301 1
20178 1.289259 -0.6562963 0.7238301 3
20179 1.289259 -0.6562963 0.7238301 1
20180 1.289259 -0.6562963 0.7238301 1
20181 1.289259 -0.6562963 0.7238301 3
20182 1.289259 -0.6562963 0.7238301 1
20183 1.289259 -0.6562963 0.7238301 1
20184 1.289259 -0.6562963 0.7238301 2
20185 1.289259 -0.6562963 0.7238301 3
20186 1.289259 -0.6562963 0.7238301 1
20187 1.289259 -0.6562963 0.7238301 1
20188 1.289259 -0.6562963 0.7238301 2
20189 1.289259 -0.6562963 0.7238301 2
20190 1.289259 -0.6562963 0.7238301 1
20191 1.289259 -0.6562963 0.7238301 3
20192 1.289259 -0.6562963 0.7238301 3
20193 1.289259 -0.6562963 0.7238301 1
20194 1.289259 -0.6562963 0.7238301 3
20195 1.289259 -0.6562963 0.7238301 1
20196 1.289259 -0.6562963 0.7238301 1
20197 1.289259 -0.6562963 0.7238301 1
20198 1.289259 -0.6562963 0.7238301 1
20199 1.289259 -0.6562963 0.7238301 2
20200 1.289259 -0.6562963 0.7238301 3
20201 1.289259 -0.6562963 0.7238301 1
20202 1.289259 -0.6562963 0.7238301 1
20203 1.289259 -0.6562963 0.7238301 1
20204 1.289259 -0.6562963 0.7238301 1
20205 1.289259 -0.6562963 0.7238301 2
20206 1.289259 -0.6562963 0.7238301 2
20207 1.289259 -0.6562963 0.7238301 3
20208 1.289259 -0.6562963 0.7238301 2
20209 1.289259 -0.6562963 0.7238301 2
20210 1.289259 -0.6562963 0.7238301 3
20211 1.289259 -0.6562963 0.7238301 1
20212 1.289259 -0.6562963 0.7238301 2
20213 1.289259 -0.6562963 0.7238301 3
20214 1.289259 -0.6562963 0.7238301 3
20215 1.289259 -0.6562963 0.7238301 3
20216 1.289259 -0.6562963 0.7238301 2
20217 1.289259 -0.6562963 0.7238301 1
20218 1.289259 -0.6562963 0.7238301 2
20219 1.289853 -0.6665182 0.7217043 2
20220 1.289853 -0.6665182 0.7217043 2
20221 1.289853 -0.6665182 0.7217043 1
20222 1.289853 -0.6665182 0.7217043 2
20223 1.289853 -0.6665182 0.7217043 3
20224 1.289853 -0.6665182 0.7217043 3
20225 1.289853 -0.6665182 0.7217043 1
20226 1.289853 -0.6665182 0.7217043 1
20227 1.289853 -0.6665182 0.7217043 1
20228 1.289853 -0.6665182 0.7217043 2
20229 1.289853 -0.6665182 0.7217043 3
20230 1.289853 -0.6665182 0.7217043 1
20231 1.289853 -0.6665182 0.7217043 3
20232 1.289853 -0.6665182 0.7217043 2
20233 1.289853 -0.6665182 0.7217043 1
20234 1.289853 -0.6665182 0.7217043 3
20235 1.289853 -0.6665182 0.7217043 3
20236 1.289853 -0.6665182 0.7217043 3
20237 1.289853 -0.6665182 0.7217043 3
20238 1.289853 -0.6665182 0.7217043 1
20239 1.289853 -0.6665182 0.7217043 2
20240 1.289853 -0.6665182 0.7217043 2
20241 1.289853 -0.6665182 0.7217043 1
20242 1.289853 -0.6665182 0.7217043 3
20243 1.289853 -0.6665182 0.7217043 2
20244 1.289853 -0.6665182 0.7217043 3
20245 1.289853 -0.6665182 0.7217043 1
20246 1.289853 -0.6665182 0.7217043 1
20247 1.289853 -0.6665182 0.7217043 1
20248 1.289853 -0.6665182 0.7217043 1
20249 1.289853 -0.6665182 0.7217043 1
20250 1.289853 -0.6665182 0.7217043 3
20251 1.289853 -0.6665182 0.7217043 2
20252 1.289853 -0.6665182 0.7217043 3
20253 1.289853 -0.6665182 0.7217043 2
20254 1.289853 -0.6665182 0.7217043 3
20255 1.289853 -0.6665182 0.7217043 1
20256 1.289853 -0.6665182 0.7217043 3
20257 1.289853 -0.6665182 0.7217043 3
20258 1.289853 -0.6665182 0.7217043 1
20259 1.289853 -0.6665182 0.7217043 2
20260 1.289853 -0.6665182 0.7217043 1
20261 1.289853 -0.6665182 0.7217043 3
20262 1.289853 -0.6665182 0.7217043 1
20263 1.289853 -0.6665182 0.7217043 2
20264 1.289853 -0.6665182 0.7217043 3
20265 1.289853 -0.6665182 0.7217043 2
20266 1.289853 -0.6665182 0.7217043 3
20267 1.289853 -0.6665182 0.7217043 2
20268 1.289853 -0.6665182 0.7217043 1
20269 1.289853 -0.6665182 0.7217043 2
20270 1.289853 -0.6665182 0.7217043 3
20271 1.289853 -0.6665182 0.7217043 1
20272 1.289853 -0.6665182 0.7217043 2
20273 1.289853 -0.6665182 0.7217043 2
20274 1.289853 -0.6665182 0.7217043 1
20275 1.289853 -0.6665182 0.7217043 2
20276 1.289853 -0.6665182 0.7217043 3
20277 1.289853 -0.6665182 0.7217043 3
20278 1.289853 -0.6665182 0.7217043 1
20279 1.289853 -0.6665182 0.7217043 2
20280 1.289853 -0.6665182 0.7217043 2
20281 1.289853 -0.6665182 0.7217043 1
20282 1.289853 -0.6665182 0.7217043 1
20283 1.289853 -0.6665182 0.7217043 3
20284 1.289853 -0.6665182 0.7217043 2
20285 1.289853 -0.6665182 0.7217043 3
20286 1.289853 -0.6665182 0.7217043 2
20287 1.289853 -0.6665182 0.7217043 3
20288 1.289853 -0.6665182 0.7217043 3
20289 1.289853 -0.6665182 0.7217043 1
20290 1.289853 -0.6665182 0.7217043 2
20291 1.289853 -0.6665182 0.7217043 1
20292 1.289853 -0.6665182 0.7217043 3
20293 1.289853 -0.6665182 0.7217043 3
20294 1.289853 -0.6665182 0.7217043 3
20295 1.289853 -0.6665182 0.7217043 2
20296 1.289853 -0.6665182 0.7217043 1
20297 1.289853 -0.6665182 0.7217043 2
20298 1.289853 -0.6665182 0.7217043 3
20299 1.289853 -0.6665182 0.7217043 1
20300 1.289853 -0.6665182 0.7217043 3
20301 1.289853 -0.6665182 0.7217043 3
20302 1.289853 -0.6665182 0.7217043 2
20303 1.289853 -0.6665182 0.7217043 3
20304 1.289853 -0.6665182 0.7217043 2
20305 1.289853 -0.6665182 0.7217043 1
20306 1.289853 -0.6665182 0.7217043 1
20307 1.289853 -0.6665182 0.7217043 3
20308 1.289853 -0.6665182 0.7217043 1
20309 1.289853 -0.6665182 0.7217043 3
20310 1.289853 -0.6665182 0.7217043 2
20311 1.289853 -0.6665182 0.7217043 1
20312 1.289853 -0.6665182 0.7217043 2
20313 1.289853 -0.6665182 0.7217043 2
20314 1.289853 -0.6665182 0.7217043 2
20315 1.289853 -0.6665182 0.7217043 2
20316 1.289853 -0.6665182 0.7217043 1
20317 1.289853 -0.6665182 0.7217043 2
20318 1.289853 -0.6665182 0.7217043 2
20319 1.289853 -0.6665182 0.7217043 3
20320 1.289853 -0.6665182 0.7217043 1
20321 1.289853 -0.6665182 0.7217043 3
20322 1.289853 -0.6665182 0.7217043 3
20323 1.289853 -0.6665182 0.7217043 2
20324 1.289853 -0.6665182 0.7217043 3
20325 1.289853 -0.6665182 0.7217043 1
20326 1.289853 -0.6665182 0.7217043 3
20327 1.289853 -0.6665182 0.7217043 2
20328 1.289853 -0.6665182 0.7217043 1
20329 1.289853 -0.6665182 0.7217043 1
20330 1.289853 -0.6665182 0.7217043 3
20331 1.289853 -0.6665182 0.7217043 3
20332 1.289853 -0.6665182 0.7217043 1
20333 1.289853 -0.6665182 0.7217043 2
20334 1.289853 -0.6665182 0.7217043 3
20335 1.289853 -0.6665182 0.7217043 1
20336 1.289853 -0.6665182 0.7217043 3
20337 1.289853 -0.6665182 0.7217043 2
20338 1.289853 -0.6665182 0.7217043 3
20339 1.289853 -0.6665182 0.7217043 1
20340 1.289853 -0.6665182 0.7217043 1
20341 1.289853 -0.6665182 0.7217043 3
20342 1.289853 -0.6665182 0.7217043 3
20343 1.289853 -0.6665182 0.7217043 3
20344 1.289853 -0.6665182 0.7217043 1
20345 1.289853 -0.6665182 0.7217043 3
20346 1.289853 -0.6665182 0.7217043 3
20347 1.289853 -0.6665182 0.7217043 3
20348 1.289853 -0.6665182 0.7217043 1
20349 1.289853 -0.6665182 0.7217043 2
20350 1.289853 -0.6665182 0.7217043 1
20351 1.289853 -0.6665182 0.7217043 1
20352 1.289853 -0.6665182 0.7217043 1
20353 1.289853 -0.6665182 0.7217043 2
20354 1.289853 -0.6665182 0.7217043 2
20355 1.289853 -0.6665182 0.7217043 2
20356 1.289853 -0.6665182 0.7217043 2
20357 1.289853 -0.6665182 0.7217043 3
20358 1.289853 -0.6665182 0.7217043 3
20359 1.289853 -0.6665182 0.7217043 2
20360 1.289853 -0.6665182 0.7217043 1
20361 1.289853 -0.6665182 0.7217043 1
20362 1.289853 -0.6665182 0.7217043 1
20363 1.289853 -0.6665182 0.7217043 1
20364 1.289853 -0.6665182 0.7217043 3
20365 1.289853 -0.6665182 0.7217043 1
20366 1.289853 -0.6665182 0.7217043 2
20367 1.289853 -0.6665182 0.7217043 1
20368 1.289853 -0.6665182 0.7217043 3
20369 1.289853 -0.6665182 0.7217043 1
20370 1.289853 -0.6665182 0.7217043 2
20371 1.289853 -0.6665182 0.7217043 3
20372 1.289853 -0.6665182 0.7217043 1
20373 1.289853 -0.6665182 0.7217043 2
20374 1.289853 -0.6665182 0.7217043 1
20375 1.289853 -0.6665182 0.7217043 1
20376 1.289853 -0.6665182 0.7217043 1
20377 1.289853 -0.6665182 0.7217043 3
20378 1.289853 -0.6665182 0.7217043 1
20379 1.289853 -0.6665182 0.7217043 2
20380 1.289853 -0.6665182 0.7217043 2
20381 1.289853 -0.6665182 0.7217043 2
20382 1.289853 -0.6665182 0.7217043 1
20383 1.289853 -0.6665182 0.7217043 1
20384 1.289853 -0.6665182 0.7217043 2
20385 1.289853 -0.6665182 0.7217043 3
20386 1.289853 -0.6665182 0.7217043 2
20387 1.289853 -0.6665182 0.7217043 3
20388 1.289853 -0.6665182 0.7217043 3
20389 1.289853 -0.6665182 0.7217043 2
20390 1.289853 -0.6665182 0.7217043 1
20391 1.289853 -0.6665182 0.7217043 2
20392 1.289853 -0.6665182 0.7217043 1
20393 1.289853 -0.6665182 0.7217043 3
20394 1.289853 -0.6665182 0.7217043 1
20395 1.289853 -0.6665182 0.7217043 3
20396 1.289853 -0.6665182 0.7217043 2
20397 1.289853 -0.6665182 0.7217043 2
20398 1.289853 -0.6665182 0.7217043 3
20399 1.289853 -0.6665182 0.7217043 1
20400 1.289853 -0.6665182 0.7217043 2
20401 1.289853 -0.6665182 0.7217043 3
20402 1.289853 -0.6665182 0.7217043 1
20403 1.289853 -0.6665182 0.7217043 2
20404 1.289853 -0.6665182 0.7217043 1
20405 1.289853 -0.6665182 0.7217043 2
20406 1.289853 -0.6665182 0.7217043 2
20407 1.289853 -0.6665182 0.7217043 3
20408 1.289853 -0.6665182 0.7217043 3
20409 1.289853 -0.6665182 0.7217043 2
20410 1.289853 -0.6665182 0.7217043 3
20411 1.289853 -0.6665182 0.7217043 2
20412 1.289853 -0.6665182 0.7217043 2
20413 1.289853 -0.6665182 0.7217043 2
20414 1.289853 -0.6665182 0.7217043 3
20415 1.289853 -0.6665182 0.7217043 3
20416 1.289853 -0.6665182 0.7217043 2
20417 1.289853 -0.6665182 0.7217043 1
20418 1.289853 -0.6665182 0.7217043 2
20419 1.289853 -0.6665182 0.7217043 3
20420 1.289853 -0.6665182 0.7217043 1
20421 1.289853 -0.6665182 0.7217043 2
20422 1.289853 -0.6665182 0.7217043 2
20423 1.289853 -0.6665182 0.7217043 1
20424 1.289853 -0.6665182 0.7217043 2
20425 1.289853 -0.6665182 0.7217043 3
20426 1.289853 -0.6665182 0.7217043 1
20427 1.289853 -0.6665182 0.7217043 2
20428 1.289853 -0.6665182 0.7217043 2
20429 1.289853 -0.6665182 0.7217043 2
20430 1.289853 -0.6665182 0.7217043 1
20431 1.289853 -0.6665182 0.7217043 1
20432 1.289853 -0.6665182 0.7217043 2
20433 1.289853 -0.6665182 0.7217043 1
20434 1.289853 -0.6665182 0.7217043 3
20435 1.289853 -0.6665182 0.7217043 1
20436 1.289853 -0.6665182 0.7217043 3
20437 1.289853 -0.6665182 0.7217043 1
20438 1.289853 -0.6665182 0.7217043 2
20439 1.289853 -0.6665182 0.7217043 3
20440 1.289853 -0.6665182 0.7217043 3
20441 1.289853 -0.6665182 0.7217043 2
20442 1.289853 -0.6665182 0.7217043 2
20443 1.289853 -0.6665182 0.7217043 2
20444 1.289853 -0.6665182 0.7217043 1
20445 1.289853 -0.6665182 0.7217043 1
20446 1.289853 -0.6665182 0.7217043 2
20447 1.289853 -0.6665182 0.7217043 1
20448 1.289853 -0.6665182 0.7217043 1
20449 1.289853 -0.6665182 0.7217043 1
20450 1.289853 -0.6665182 0.7217043 2
20451 1.289853 -0.6665182 0.7217043 3
20452 1.289853 -0.6665182 0.7217043 2
20453 1.289853 -0.6665182 0.7217043 1
20454 1.289853 -0.6665182 0.7217043 1
20455 1.289853 -0.6665182 0.7217043 3
20456 1.289853 -0.6665182 0.7217043 3
20457 1.289853 -0.6665182 0.7217043 1
20458 1.289853 -0.6665182 0.7217043 1
20459 1.289853 -0.6665182 0.7217043 2
20460 1.289853 -0.6665182 0.7217043 2
20461 1.289853 -0.6665182 0.7217043 2
20462 1.289853 -0.6665182 0.7217043 2
20463 1.289853 -0.6665182 0.7217043 3
20464 1.289853 -0.6665182 0.7217043 2
20465 1.289853 -0.6665182 0.7217043 2
20466 1.289853 -0.6665182 0.7217043 1
20467 1.289853 -0.6665182 0.7217043 2
20468 1.289853 -0.6665182 0.7217043 1
20469 1.289853 -0.6665182 0.7217043 1
20470 1.289853 -0.6665182 0.7217043 3
20471 1.289853 -0.6665182 0.7217043 2
20472 1.289853 -0.6665182 0.7217043 3
20473 1.289853 -0.6665182 0.7217043 3
20474 1.289853 -0.6665182 0.7217043 2
20475 1.289853 -0.6665182 0.7217043 3
20476 1.289853 -0.6665182 0.7217043 2
20477 1.289853 -0.6665182 0.7217043 2
20478 1.289853 -0.6665182 0.7217043 3
20479 1.289853 -0.6665182 0.7217043 3
20480 1.289853 -0.6665182 0.7217043 3
20481 1.289853 -0.6665182 0.7217043 3
20482 1.289853 -0.6665182 0.7217043 3
20483 1.289853 -0.6665182 0.7217043 3
20484 1.289853 -0.6665182 0.7217043 1
20485 1.289853 -0.6665182 0.7217043 2
20486 1.289853 -0.6665182 0.7217043 1
20487 1.289853 -0.6665182 0.7217043 1
20488 1.289853 -0.6665182 0.7217043 1
20489 1.289853 -0.6665182 0.7217043 3
20490 1.289853 -0.6665182 0.7217043 3
20491 1.289853 -0.6665182 0.7217043 1
20492 1.289853 -0.6665182 0.7217043 1
20493 1.289853 -0.6665182 0.7217043 3
20494 1.289853 -0.6665182 0.7217043 2
20495 1.289853 -0.6665182 0.7217043 3
20496 1.289853 -0.6665182 0.7217043 1
20497 1.289853 -0.6665182 0.7217043 2
20498 1.289853 -0.6665182 0.7217043 3
20499 1.289853 -0.6665182 0.7217043 1
20500 1.289853 -0.6665182 0.7217043 1
20501 1.289853 -0.6665182 0.7217043 3
20502 1.289853 -0.6665182 0.7217043 3
20503 1.289853 -0.6665182 0.7217043 1
20504 1.289853 -0.6665182 0.7217043 1
20505 1.289853 -0.6665182 0.7217043 1
20506 1.289853 -0.6665182 0.7217043 2
20507 1.289853 -0.6665182 0.7217043 3
20508 1.289853 -0.6665182 0.7217043 1
20509 1.289853 -0.6665182 0.7217043 1
20510 1.289853 -0.6665182 0.7217043 2
20511 1.289853 -0.6665182 0.7217043 2
20512 1.289853 -0.6665182 0.7217043 2
20513 1.289853 -0.6665182 0.7217043 2
20514 1.289853 -0.6665182 0.7217043 3
20515 1.289853 -0.6665182 0.7217043 3
20516 1.289853 -0.6665182 0.7217043 3
20517 1.289853 -0.6665182 0.7217043 1
20518 1.289853 -0.6665182 0.7217043 3
20519 1.289853 -0.6665182 0.7217043 2
20520 1.289853 -0.6665182 0.7217043 1
20521 1.289853 -0.6665182 0.7217043 3
20522 1.289853 -0.6665182 0.7217043 1
20523 1.289853 -0.6665182 0.7217043 2
20524 1.289853 -0.6665182 0.7217043 3
20525 1.289853 -0.6665182 0.7217043 2
20526 1.289853 -0.6665182 0.7217043 1
20527 1.289853 -0.6665182 0.7217043 3
20528 1.289853 -0.6665182 0.7217043 1
20529 1.289853 -0.6665182 0.7217043 2
20530 1.289853 -0.6665182 0.7217043 1
20531 1.289853 -0.6665182 0.7217043 2
20532 1.289853 -0.6665182 0.7217043 3
20533 1.289853 -0.6665182 0.7217043 3
20534 1.289853 -0.6665182 0.7217043 2
20535 1.289853 -0.6665182 0.7217043 2
20536 1.289853 -0.6665182 0.7217043 1
20537 1.289853 -0.6665182 0.7217043 3
20538 1.289853 -0.6665182 0.7217043 3
20539 1.289853 -0.6665182 0.7217043 1
20540 1.289853 -0.6665182 0.7217043 3
20541 1.289853 -0.6665182 0.7217043 1
20542 1.289853 -0.6665182 0.7217043 1
20543 1.289853 -0.6665182 0.7217043 2
20544 1.289853 -0.6665182 0.7217043 1
20545 1.289853 -0.6665182 0.7217043 2
20546 1.289853 -0.6665182 0.7217043 3
20547 1.289853 -0.6665182 0.7217043 3
20548 1.289853 -0.6665182 0.7217043 3
20549 1.289853 -0.6665182 0.7217043 3
20550 1.289853 -0.6665182 0.7217043 3
20551 1.289853 -0.6665182 0.7217043 3
20552 1.289853 -0.6665182 0.7217043 2
20553 1.289853 -0.6665182 0.7217043 3
20554 1.289853 -0.6665182 0.7217043 1
20555 1.289853 -0.6665182 0.7217043 1
20556 1.289853 -0.6665182 0.7217043 2
20557 1.289853 -0.6665182 0.7217043 3
20558 1.289853 -0.6665182 0.7217043 2
20559 1.289853 -0.6665182 0.7217043 3
20560 1.289853 -0.6665182 0.7217043 3
20561 1.289853 -0.6665182 0.7217043 2
20562 1.289853 -0.6665182 0.7217043 1
20563 1.289853 -0.6665182 0.7217043 1
20564 1.289853 -0.6665182 0.7217043 3
20565 1.289853 -0.6665182 0.7217043 2
20566 1.289853 -0.6665182 0.7217043 3
20567 1.289853 -0.6665182 0.7217043 1
20568 1.289853 -0.6665182 0.7217043 3
20569 1.289853 -0.6665182 0.7217043 3
20570 1.289853 -0.6665182 0.7217043 1
20571 1.289853 -0.6665182 0.7217043 3
20572 1.289853 -0.6665182 0.7217043 2
20573 1.289853 -0.6665182 0.7217043 1
20574 1.289853 -0.6665182 0.7217043 3
20575 1.289853 -0.6665182 0.7217043 2
20576 1.289853 -0.6665182 0.7217043 2
20577 1.289853 -0.6665182 0.7217043 3
20578 1.289853 -0.6665182 0.7217043 3
20579 1.289853 -0.6665182 0.7217043 2
20580 1.289853 -0.6665182 0.7217043 2
20581 1.289853 -0.6665182 0.7217043 2
20582 1.289853 -0.6665182 0.7217043 2
20583 1.289853 -0.6665182 0.7217043 1
20584 1.289853 -0.6665182 0.7217043 2
20585 1.289853 -0.6665182 0.7217043 2
20586 1.289853 -0.6665182 0.7217043 2
20587 1.289853 -0.6665182 0.7217043 2
20588 1.289853 -0.6665182 0.7217043 1
20589 1.289853 -0.6665182 0.7217043 2
20590 1.289853 -0.6665182 0.7217043 1
20591 1.289853 -0.6665182 0.7217043 1
20592 1.289853 -0.6665182 0.7217043 3
20593 1.289853 -0.6665182 0.7217043 2
20594 1.289853 -0.6665182 0.7217043 3
20595 1.289853 -0.6665182 0.7217043 3
20596 1.289853 -0.6665182 0.7217043 2
20597 1.289853 -0.6665182 0.7217043 1
20598 1.289853 -0.6665182 0.7217043 3
20599 1.289853 -0.6665182 0.7217043 3
20600 1.289853 -0.6665182 0.7217043 3
20601 1.289853 -0.6665182 0.7217043 2
20602 1.289853 -0.6665182 0.7217043 2
20603 1.289853 -0.6665182 0.7217043 3
20604 1.289853 -0.6665182 0.7217043 2
20605 1.289853 -0.6665182 0.7217043 1
20606 1.289853 -0.6665182 0.7217043 3
20607 1.289853 -0.6665182 0.7217043 1
20608 1.289853 -0.6665182 0.7217043 2
20609 1.289853 -0.6665182 0.7217043 3
20610 1.289853 -0.6665182 0.7217043 3
20611 1.289853 -0.6665182 0.7217043 2
20612 1.289853 -0.6665182 0.7217043 2
20613 1.289853 -0.6665182 0.7217043 3
20614 1.289853 -0.6665182 0.7217043 2
20615 1.289853 -0.6665182 0.7217043 2
20616 1.289853 -0.6665182 0.7217043 3
20617 1.289853 -0.6665182 0.7217043 3
20618 1.289853 -0.6665182 0.7217043 2
20619 1.289853 -0.6665182 0.7217043 1
20620 1.289853 -0.6665182 0.7217043 3
20621 1.289853 -0.6665182 0.7217043 2
20622 1.289853 -0.6665182 0.7217043 3
20623 1.289853 -0.6665182 0.7217043 3
20624 1.289853 -0.6665182 0.7217043 3
20625 1.289853 -0.6665182 0.7217043 3
20626 1.289853 -0.6665182 0.7217043 1
20627 1.289853 -0.6665182 0.7217043 2
20628 1.289853 -0.6665182 0.7217043 3
20629 1.289853 -0.6665182 0.7217043 2
20630 1.289853 -0.6665182 0.7217043 1
20631 1.289853 -0.6665182 0.7217043 3
20632 1.289853 -0.6665182 0.7217043 3
20633 1.289853 -0.6665182 0.7217043 3
20634 1.289853 -0.6665182 0.7217043 2
20635 1.289853 -0.6665182 0.7217043 3
20636 1.289853 -0.6665182 0.7217043 2
20637 1.289853 -0.6665182 0.7217043 3
20638 1.289853 -0.6665182 0.7217043 1
20639 1.289853 -0.6665182 0.7217043 1
20640 1.289853 -0.6665182 0.7217043 3
20641 1.289853 -0.6665182 0.7217043 1
20642 1.289853 -0.6665182 0.7217043 2
20643 1.289853 -0.6665182 0.7217043 1
20644 1.289853 -0.6665182 0.7217043 3
20645 1.289853 -0.6665182 0.7217043 3
20646 1.289853 -0.6665182 0.7217043 3
20647 1.289853 -0.6665182 0.7217043 2
20648 1.289853 -0.6665182 0.7217043 1
20649 1.289853 -0.6665182 0.7217043 3
20650 1.289853 -0.6665182 0.7217043 1
20651 1.289853 -0.6665182 0.7217043 1
20652 1.289853 -0.6665182 0.7217043 3
20653 1.289853 -0.6665182 0.7217043 2
20654 1.289853 -0.6665182 0.7217043 2
20655 1.289853 -0.6665182 0.7217043 1
20656 1.289853 -0.6665182 0.7217043 2
20657 1.289853 -0.6665182 0.7217043 1
20658 1.289853 -0.6665182 0.7217043 2
20659 1.289853 -0.6665182 0.7217043 1
20660 1.289853 -0.6665182 0.7217043 2
20661 1.289853 -0.6665182 0.7217043 3
20662 1.289853 -0.6665182 0.7217043 1
20663 1.289853 -0.6665182 0.7217043 3
20664 1.289853 -0.6665182 0.7217043 2
20665 1.289853 -0.6665182 0.7217043 2
20666 1.289853 -0.6665182 0.7217043 2
20667 1.289853 -0.6665182 0.7217043 2
20668 1.289853 -0.6665182 0.7217043 2
20669 1.289853 -0.6665182 0.7217043 1
20670 1.289853 -0.6665182 0.7217043 2
20671 1.289853 -0.6665182 0.7217043 1
20672 1.289853 -0.6665182 0.7217043 3
20673 1.289853 -0.6665182 0.7217043 2
20674 1.289853 -0.6665182 0.7217043 1
20675 1.289853 -0.6665182 0.7217043 3
20676 1.289853 -0.6665182 0.7217043 1
20677 1.289853 -0.6665182 0.7217043 3
20678 1.289853 -0.6665182 0.7217043 1
20679 1.289853 -0.6665182 0.7217043 3
20680 1.289853 -0.6665182 0.7217043 3
20681 1.289853 -0.6665182 0.7217043 1
20682 1.289853 -0.6665182 0.7217043 1
20683 1.289853 -0.6665182 0.7217043 2
20684 1.289853 -0.6665182 0.7217043 2
20685 1.289853 -0.6665182 0.7217043 3
20686 1.289853 -0.6665182 0.7217043 1
20687 1.289853 -0.6665182 0.7217043 3
20688 1.289853 -0.6665182 0.7217043 2
20689 1.289853 -0.6665182 0.7217043 2
20690 1.289853 -0.6665182 0.7217043 2
20691 1.289853 -0.6665182 0.7217043 2
20692 1.289853 -0.6665182 0.7217043 3
20693 1.289853 -0.6665182 0.7217043 3
20694 1.289853 -0.6665182 0.7217043 1
20695 1.289853 -0.6665182 0.7217043 1
20696 1.289853 -0.6665182 0.7217043 1
20697 1.289853 -0.6665182 0.7217043 1
20698 1.289853 -0.6665182 0.7217043 1
20699 1.289853 -0.6665182 0.7217043 2
20700 1.289853 -0.6665182 0.7217043 2
20701 1.289853 -0.6665182 0.7217043 2
20702 1.289853 -0.6665182 0.7217043 1
20703 1.289853 -0.6665182 0.7217043 1
20704 1.289853 -0.6665182 0.7217043 2
20705 1.289853 -0.6665182 0.7217043 3
20706 1.289853 -0.6665182 0.7217043 3
20707 1.289853 -0.6665182 0.7217043 3
20708 1.289853 -0.6665182 0.7217043 1
20709 1.289853 -0.6665182 0.7217043 3
20710 1.289853 -0.6665182 0.7217043 3
20711 1.289853 -0.6665182 0.7217043 2
20712 1.289853 -0.6665182 0.7217043 2
20713 1.289853 -0.6665182 0.7217043 2
20714 1.289853 -0.6665182 0.7217043 3
20715 1.289853 -0.6665182 0.7217043 3
20716 1.289853 -0.6665182 0.7217043 2
20717 1.289853 -0.6665182 0.7217043 3
20718 1.289853 -0.6665182 0.7217043 2
20719 1.289853 -0.6665182 0.7217043 2
20720 1.289853 -0.6665182 0.7217043 1
20721 1.289853 -0.6665182 0.7217043 2
20722 1.289853 -0.6665182 0.7217043 3
20723 1.289853 -0.6665182 0.7217043 2
20724 1.289853 -0.6665182 0.7217043 3
20725 1.289853 -0.6665182 0.7217043 1
20726 1.289853 -0.6665182 0.7217043 3
20727 1.289853 -0.6665182 0.7217043 1
20728 1.289853 -0.6665182 0.7217043 1
20729 1.289853 -0.6665182 0.7217043 3
20730 1.289853 -0.6665182 0.7217043 2
20731 1.289853 -0.6665182 0.7217043 3
20732 1.289853 -0.6665182 0.7217043 3
20733 1.289853 -0.6665182 0.7217043 3
20734 1.289853 -0.6665182 0.7217043 2
20735 1.289853 -0.6665182 0.7217043 3
20736 1.289853 -0.6665182 0.7217043 2
20737 1.289853 -0.6665182 0.7217043 3
20738 1.289853 -0.6665182 0.7217043 1
20739 1.289853 -0.6665182 0.7217043 3
20740 1.289853 -0.6665182 0.7217043 2
20741 1.289853 -0.6665182 0.7217043 3
20742 1.289853 -0.6665182 0.7217043 3
20743 1.289853 -0.6665182 0.7217043 1
20744 1.289853 -0.6665182 0.7217043 1
20745 1.289853 -0.6665182 0.7217043 3
20746 1.289853 -0.6665182 0.7217043 1
20747 1.289853 -0.6665182 0.7217043 1
20748 1.289853 -0.6665182 0.7217043 3
20749 1.289853 -0.6665182 0.7217043 1
20750 1.289853 -0.6665182 0.7217043 1
20751 1.289853 -0.6665182 0.7217043 2
20752 1.289853 -0.6665182 0.7217043 3
20753 1.289853 -0.6665182 0.7217043 3
20754 1.289853 -0.6665182 0.7217043 2
20755 1.289853 -0.6665182 0.7217043 3
20756 1.289853 -0.6665182 0.7217043 3
20757 1.289853 -0.6665182 0.7217043 1
20758 1.289853 -0.6665182 0.7217043 2
20759 1.289853 -0.6665182 0.7217043 3
20760 1.289853 -0.6665182 0.7217043 1
20761 1.289853 -0.6665182 0.7217043 3
20762 1.289853 -0.6665182 0.7217043 3
20763 1.289853 -0.6665182 0.7217043 1
20764 1.289853 -0.6665182 0.7217043 2
20765 1.289853 -0.6665182 0.7217043 3
20766 1.289853 -0.6665182 0.7217043 1
20767 1.289853 -0.6665182 0.7217043 1
20768 1.289853 -0.6665182 0.7217043 2
20769 1.289853 -0.6665182 0.7217043 1
20770 1.289853 -0.6665182 0.7217043 3
20771 1.289853 -0.6665182 0.7217043 3
20772 1.289853 -0.6665182 0.7217043 3
20773 1.289853 -0.6665182 0.7217043 2
20774 1.289853 -0.6665182 0.7217043 1
20775 1.289853 -0.6665182 0.7217043 1
20776 1.289853 -0.6665182 0.7217043 2
20777 1.289853 -0.6665182 0.7217043 1
20778 1.289853 -0.6665182 0.7217043 3
20779 1.289853 -0.6665182 0.7217043 2
20780 1.289853 -0.6665182 0.7217043 1
20781 1.289853 -0.6665182 0.7217043 1
20782 1.289853 -0.6665182 0.7217043 1
20783 1.289853 -0.6665182 0.7217043 2
20784 1.289853 -0.6665182 0.7217043 3
20785 1.289853 -0.6665182 0.7217043 3
20786 1.289853 -0.6665182 0.7217043 1
20787 1.289853 -0.6665182 0.7217043 3
20788 1.289853 -0.6665182 0.7217043 1
20789 1.289853 -0.6665182 0.7217043 3
20790 1.289853 -0.6665182 0.7217043 2
20791 1.289853 -0.6665182 0.7217043 1
20792 1.289853 -0.6665182 0.7217043 1
20793 1.289853 -0.6665182 0.7217043 1
20794 1.289853 -0.6665182 0.7217043 1
20795 1.289853 -0.6665182 0.7217043 1
20796 1.289853 -0.6665182 0.7217043 1
20797 1.289853 -0.6665182 0.7217043 3
20798 1.289853 -0.6665182 0.7217043 1
20799 1.289853 -0.6665182 0.7217043 2
20800 1.289853 -0.6665182 0.7217043 3
20801 1.289853 -0.6665182 0.7217043 1
20802 1.289853 -0.6665182 0.7217043 2
20803 1.289853 -0.6665182 0.7217043 1
20804 1.289853 -0.6665182 0.7217043 3
20805 1.289853 -0.6665182 0.7217043 2
20806 1.289853 -0.6665182 0.7217043 2
20807 1.289853 -0.6665182 0.7217043 3
20808 1.289853 -0.6665182 0.7217043 3
20809 1.289853 -0.6665182 0.7217043 2
20810 1.289853 -0.6665182 0.7217043 1
20811 1.289853 -0.6665182 0.7217043 2
20812 1.289853 -0.6665182 0.7217043 1
20813 1.289853 -0.6665182 0.7217043 2
20814 1.289853 -0.6665182 0.7217043 2
20815 1.289853 -0.6665182 0.7217043 2
20816 1.289853 -0.6665182 0.7217043 2
20817 1.289853 -0.6665182 0.7217043 1
20818 1.289853 -0.6665182 0.7217043 1
20819 1.289853 -0.6665182 0.7217043 3
20820 1.289853 -0.6665182 0.7217043 3
20821 1.289853 -0.6665182 0.7217043 3
20822 1.289853 -0.6665182 0.7217043 3
20823 1.289853 -0.6665182 0.7217043 3
20824 1.289853 -0.6665182 0.7217043 2
20825 1.289853 -0.6665182 0.7217043 2
20826 1.289853 -0.6665182 0.7217043 2
20827 1.289853 -0.6665182 0.7217043 1
20828 1.289853 -0.6665182 0.7217043 3
20829 1.289853 -0.6665182 0.7217043 3
20830 1.289853 -0.6665182 0.7217043 3
20831 1.289853 -0.6665182 0.7217043 2
20832 1.289853 -0.6665182 0.7217043 1
20833 1.289853 -0.6665182 0.7217043 1
20834 1.289853 -0.6665182 0.7217043 1
20835 1.289853 -0.6665182 0.7217043 2
20836 1.289853 -0.6665182 0.7217043 1
20837 1.289853 -0.6665182 0.7217043 3
20838 1.289853 -0.6665182 0.7217043 2
20839 1.289853 -0.6665182 0.7217043 3
20840 1.289853 -0.6665182 0.7217043 1
20841 1.289853 -0.6665182 0.7217043 3
20842 1.289853 -0.6665182 0.7217043 3
20843 1.289853 -0.6665182 0.7217043 1
20844 1.289853 -0.6665182 0.7217043 1
20845 1.289853 -0.6665182 0.7217043 1
20846 1.289853 -0.6665182 0.7217043 1
20847 1.289853 -0.6665182 0.7217043 2
20848 1.289853 -0.6665182 0.7217043 1
20849 1.289853 -0.6665182 0.7217043 2
20850 1.289853 -0.6665182 0.7217043 2
20851 1.289853 -0.6665182 0.7217043 1
20852 1.289853 -0.6665182 0.7217043 2
20853 1.289853 -0.6665182 0.7217043 3
20854 1.289853 -0.6665182 0.7217043 1
20855 1.289853 -0.6665182 0.7217043 2
20856 1.289853 -0.6665182 0.7217043 3
20857 1.289853 -0.6665182 0.7217043 2
20858 1.289853 -0.6665182 0.7217043 2
20859 1.289853 -0.6665182 0.7217043 1
20860 1.289853 -0.6665182 0.7217043 1
20861 1.289853 -0.6665182 0.7217043 3
20862 1.289853 -0.6665182 0.7217043 1
20863 1.289853 -0.6665182 0.7217043 3
20864 1.289853 -0.6665182 0.7217043 3
20865 1.289853 -0.6665182 0.7217043 1
20866 1.289853 -0.6665182 0.7217043 2
20867 1.289853 -0.6665182 0.7217043 1
20868 1.289853 -0.6665182 0.7217043 1
20869 1.289853 -0.6665182 0.7217043 1
20870 1.289853 -0.6665182 0.7217043 2
20871 1.289853 -0.6665182 0.7217043 3
20872 1.289853 -0.6665182 0.7217043 3
20873 1.289853 -0.6665182 0.7217043 1
20874 1.289853 -0.6665182 0.7217043 3
20875 1.289853 -0.6665182 0.7217043 3
20876 1.289853 -0.6665182 0.7217043 2
20877 1.289853 -0.6665182 0.7217043 3
20878 1.289853 -0.6665182 0.7217043 2
20879 1.289853 -0.6665182 0.7217043 2
20880 1.289853 -0.6665182 0.7217043 2
20881 1.289853 -0.6665182 0.7217043 2
20882 1.289853 -0.6665182 0.7217043 3
20883 1.289853 -0.6665182 0.7217043 1
20884 1.289853 -0.6665182 0.7217043 3
20885 1.289853 -0.6665182 0.7217043 2
20886 1.289853 -0.6665182 0.7217043 1
20887 1.289853 -0.6665182 0.7217043 2
20888 1.289853 -0.6665182 0.7217043 3
20889 1.289853 -0.6665182 0.7217043 2
20890 1.289853 -0.6665182 0.7217043 1
20891 1.289853 -0.6665182 0.7217043 2
20892 1.289853 -0.6665182 0.7217043 1
20893 1.289853 -0.6665182 0.7217043 1
20894 1.289853 -0.6665182 0.7217043 2
20895 1.289853 -0.6665182 0.7217043 1
20896 1.289853 -0.6665182 0.7217043 1
20897 1.289853 -0.6665182 0.7217043 1
20898 1.289853 -0.6665182 0.7217043 2
20899 1.289853 -0.6665182 0.7217043 2
20900 1.289853 -0.6665182 0.7217043 2
20901 1.289853 -0.6665182 0.7217043 1
20902 1.289853 -0.6665182 0.7217043 2
20903 1.289853 -0.6665182 0.7217043 3
20904 1.289853 -0.6665182 0.7217043 1
20905 1.289853 -0.6665182 0.7217043 2
20906 1.289853 -0.6665182 0.7217043 1
20907 1.289853 -0.6665182 0.7217043 3
20908 1.289853 -0.6665182 0.7217043 1
20909 1.289853 -0.6665182 0.7217043 3
20910 1.289853 -0.6665182 0.7217043 2
20911 1.289853 -0.6665182 0.7217043 3
20912 1.289853 -0.6665182 0.7217043 1
20913 1.289853 -0.6665182 0.7217043 3
20914 1.289853 -0.6665182 0.7217043 2
20915 1.289853 -0.6665182 0.7217043 2
20916 1.289853 -0.6665182 0.7217043 2
20917 1.289853 -0.6665182 0.7217043 1
20918 1.289853 -0.6665182 0.7217043 3
20919 1.289853 -0.6665182 0.7217043 1
20920 1.289853 -0.6665182 0.7217043 1
20921 1.289853 -0.6665182 0.7217043 2
20922 1.289853 -0.6665182 0.7217043 3
20923 1.289853 -0.6665182 0.7217043 3
20924 1.289853 -0.6665182 0.7217043 1
20925 1.289853 -0.6665182 0.7217043 3
20926 1.289853 -0.6665182 0.7217043 2
20927 1.289853 -0.6665182 0.7217043 2
20928 1.289853 -0.6665182 0.7217043 2
20929 1.289853 -0.6665182 0.7217043 1
20930 1.289853 -0.6665182 0.7217043 3
20931 1.289853 -0.6665182 0.7217043 1
20932 1.289853 -0.6665182 0.7217043 1
20933 1.289853 -0.6665182 0.7217043 1
20934 1.289853 -0.6665182 0.7217043 3
20935 1.289853 -0.6665182 0.7217043 2
20936 1.289853 -0.6665182 0.7217043 2
20937 1.289853 -0.6665182 0.7217043 1
20938 1.289853 -0.6665182 0.7217043 1
20939 1.289853 -0.6665182 0.7217043 2
20940 1.289853 -0.6665182 0.7217043 3
20941 1.289853 -0.6665182 0.7217043 2
20942 1.289853 -0.6665182 0.7217043 2
20943 1.289853 -0.6665182 0.7217043 3
20944 1.289853 -0.6665182 0.7217043 2
20945 1.289853 -0.6665182 0.7217043 1
20946 1.289853 -0.6665182 0.7217043 1
20947 1.289853 -0.6665182 0.7217043 2
20948 1.289853 -0.6665182 0.7217043 1
20949 1.289853 -0.6665182 0.7217043 3
20950 1.289853 -0.6665182 0.7217043 2
20951 1.289853 -0.6665182 0.7217043 1
20952 1.289853 -0.6665182 0.7217043 2
20953 1.289853 -0.6665182 0.7217043 1
20954 1.289853 -0.6665182 0.7217043 1
20955 1.289853 -0.6665182 0.7217043 2
20956 1.289853 -0.6665182 0.7217043 2
20957 1.289853 -0.6665182 0.7217043 2
20958 1.289853 -0.6665182 0.7217043 2
20959 1.289853 -0.6665182 0.7217043 3
20960 1.289853 -0.6665182 0.7217043 1
20961 1.289853 -0.6665182 0.7217043 1
20962 1.289853 -0.6665182 0.7217043 2
20963 1.289853 -0.6665182 0.7217043 1
20964 1.289853 -0.6665182 0.7217043 2
20965 1.289853 -0.6665182 0.7217043 3
20966 1.289853 -0.6665182 0.7217043 2
20967 1.289853 -0.6665182 0.7217043 2
20968 1.289853 -0.6665182 0.7217043 2
20969 1.289853 -0.6665182 0.7217043 1
20970 1.289853 -0.6665182 0.7217043 1
20971 1.289853 -0.6665182 0.7217043 3
20972 1.289853 -0.6665182 0.7217043 3
20973 1.289853 -0.6665182 0.7217043 1
20974 1.289853 -0.6665182 0.7217043 3
20975 1.289853 -0.6665182 0.7217043 3
20976 1.289853 -0.6665182 0.7217043 2
20977 1.289853 -0.6665182 0.7217043 1
20978 1.289853 -0.6665182 0.7217043 3
20979 1.289853 -0.6665182 0.7217043 2
20980 1.289853 -0.6665182 0.7217043 3
20981 1.289853 -0.6665182 0.7217043 3
20982 1.289853 -0.6665182 0.7217043 3
20983 1.289853 -0.6665182 0.7217043 1
20984 1.289853 -0.6665182 0.7217043 2
20985 1.289853 -0.6665182 0.7217043 2
20986 1.289853 -0.6665182 0.7217043 1
20987 1.289853 -0.6665182 0.7217043 1
20988 1.289853 -0.6665182 0.7217043 2
20989 1.289853 -0.6665182 0.7217043 2
20990 1.289853 -0.6665182 0.7217043 2
20991 1.289853 -0.6665182 0.7217043 3
20992 1.289853 -0.6665182 0.7217043 3
20993 1.289853 -0.6665182 0.7217043 1
20994 1.289853 -0.6665182 0.7217043 3
20995 1.289853 -0.6665182 0.7217043 1
20996 1.289853 -0.6665182 0.7217043 3
20997 1.289853 -0.6665182 0.7217043 3
20998 1.289853 -0.6665182 0.7217043 3
20999 1.289853 -0.6665182 0.7217043 1
21000 1.289853 -0.6665182 0.7217043 3
21001 1.289853 -0.6665182 0.7217043 2
21002 1.289853 -0.6665182 0.7217043 1
21003 1.289853 -0.6665182 0.7217043 3
21004 1.289853 -0.6665182 0.7217043 2
21005 1.289853 -0.6665182 0.7217043 1
21006 1.289853 -0.6665182 0.7217043 2
21007 1.289853 -0.6665182 0.7217043 2
21008 1.289853 -0.6665182 0.7217043 3
21009 1.289853 -0.6665182 0.7217043 1
21010 1.289853 -0.6665182 0.7217043 1
21011 1.289853 -0.6665182 0.7217043 3
21012 1.289853 -0.6665182 0.7217043 3
21013 1.289853 -0.6665182 0.7217043 3
21014 1.289853 -0.6665182 0.7217043 1
21015 1.289853 -0.6665182 0.7217043 2
21016 1.289853 -0.6665182 0.7217043 1
21017 1.289853 -0.6665182 0.7217043 3
21018 1.289853 -0.6665182 0.7217043 3
21019 1.289853 -0.6665182 0.7217043 2
21020 1.289853 -0.6665182 0.7217043 3
21021 1.289853 -0.6665182 0.7217043 2
21022 1.289853 -0.6665182 0.7217043 1
21023 1.289853 -0.6665182 0.7217043 1
21024 1.289853 -0.6665182 0.7217043 3
21025 1.289853 -0.6665182 0.7217043 2
21026 1.289853 -0.6665182 0.7217043 2
21027 1.289853 -0.6665182 0.7217043 3
21028 1.289853 -0.6665182 0.7217043 1
21029 1.289853 -0.6665182 0.7217043 3
21030 1.289853 -0.6665182 0.7217043 3
21031 1.289853 -0.6665182 0.7217043 1
21032 1.289853 -0.6665182 0.7217043 2
21033 1.289853 -0.6665182 0.7217043 1
21034 1.289853 -0.6665182 0.7217043 1
21035 1.289853 -0.6665182 0.7217043 2
21036 1.289853 -0.6665182 0.7217043 3
21037 1.289853 -0.6665182 0.7217043 3
21038 1.289853 -0.6665182 0.7217043 2
21039 1.289853 -0.6665182 0.7217043 2
21040 1.289853 -0.6665182 0.7217043 1
21041 1.289853 -0.6665182 0.7217043 1
21042 1.289853 -0.6665182 0.7217043 3
21043 1.289853 -0.6665182 0.7217043 1
21044 1.289853 -0.6665182 0.7217043 1
21045 1.289853 -0.6665182 0.7217043 2
21046 1.289853 -0.6665182 0.7217043 3
21047 1.289853 -0.6665182 0.7217043 1
21048 1.289853 -0.6665182 0.7217043 1
21049 1.289853 -0.6665182 0.7217043 3
21050 1.289853 -0.6665182 0.7217043 2
21051 1.289853 -0.6665182 0.7217043 2
21052 1.289853 -0.6665182 0.7217043 1
21053 1.289853 -0.6665182 0.7217043 3
21054 1.289853 -0.6665182 0.7217043 3
21055 1.289853 -0.6665182 0.7217043 2
21056 1.289853 -0.6665182 0.7217043 2
21057 1.289853 -0.6665182 0.7217043 2
21058 1.289853 -0.6665182 0.7217043 3
21059 1.289853 -0.6665182 0.7217043 2
21060 1.289853 -0.6665182 0.7217043 3
21061 1.289853 -0.6665182 0.7217043 1
21062 1.289853 -0.6665182 0.7217043 2
21063 1.289853 -0.6665182 0.7217043 2
21064 1.289853 -0.6665182 0.7217043 1
21065 1.289853 -0.6665182 0.7217043 1
21066 1.289853 -0.6665182 0.7217043 2
21067 1.289853 -0.6665182 0.7217043 1
21068 1.289853 -0.6665182 0.7217043 1
21069 1.289853 -0.6665182 0.7217043 2
21070 1.289853 -0.6665182 0.7217043 1
21071 1.289853 -0.6665182 0.7217043 1
21072 1.289853 -0.6665182 0.7217043 1
21073 1.289853 -0.6665182 0.7217043 1
21074 1.289853 -0.6665182 0.7217043 1
21075 1.289853 -0.6665182 0.7217043 2
21076 1.289853 -0.6665182 0.7217043 3
21077 1.289853 -0.6665182 0.7217043 3
21078 1.289853 -0.6665182 0.7217043 1
21079 1.289853 -0.6665182 0.7217043 2
21080 1.289853 -0.6665182 0.7217043 1
21081 1.289853 -0.6665182 0.7217043 3
21082 1.289853 -0.6665182 0.7217043 3
21083 1.289853 -0.6665182 0.7217043 2
21084 1.289853 -0.6665182 0.7217043 3
21085 1.289853 -0.6665182 0.7217043 2
21086 1.289853 -0.6665182 0.7217043 1
21087 1.289853 -0.6665182 0.7217043 2
21088 1.289853 -0.6665182 0.7217043 2
21089 1.289853 -0.6665182 0.7217043 2
21090 1.289853 -0.6665182 0.7217043 3
21091 1.289853 -0.6665182 0.7217043 2
21092 1.289853 -0.6665182 0.7217043 1
21093 1.289853 -0.6665182 0.7217043 1
21094 1.289853 -0.6665182 0.7217043 3
21095 1.289853 -0.6665182 0.7217043 3
21096 1.289853 -0.6665182 0.7217043 2
21097 1.289853 -0.6665182 0.7217043 3
21098 1.289853 -0.6665182 0.7217043 3
21099 1.289853 -0.6665182 0.7217043 3
21100 1.289853 -0.6665182 0.7217043 2
21101 1.289853 -0.6665182 0.7217043 1
21102 1.289853 -0.6665182 0.7217043 2
21103 1.289853 -0.6665182 0.7217043 1
21104 1.289853 -0.6665182 0.7217043 2
21105 1.289853 -0.6665182 0.7217043 1
21106 1.289853 -0.6665182 0.7217043 3
21107 1.289853 -0.6665182 0.7217043 1
21108 1.289853 -0.6665182 0.7217043 2
21109 1.289853 -0.6665182 0.7217043 3
21110 1.289853 -0.6665182 0.7217043 1
21111 1.289853 -0.6665182 0.7217043 1
21112 1.289853 -0.6665182 0.7217043 1
21113 1.289853 -0.6665182 0.7217043 2
21114 1.289853 -0.6665182 0.7217043 3
21115 1.289853 -0.6665182 0.7217043 2
21116 1.289853 -0.6665182 0.7217043 1
21117 1.289853 -0.6665182 0.7217043 1
21118 1.289853 -0.6665182 0.7217043 3
21119 1.289853 -0.6665182 0.7217043 3
21120 1.289853 -0.6665182 0.7217043 2
21121 1.289853 -0.6665182 0.7217043 1
21122 1.289853 -0.6665182 0.7217043 2
21123 1.289853 -0.6665182 0.7217043 2
21124 1.289853 -0.6665182 0.7217043 3
21125 1.289853 -0.6665182 0.7217043 1
21126 1.289853 -0.6665182 0.7217043 3
21127 1.289853 -0.6665182 0.7217043 3
21128 1.289853 -0.6665182 0.7217043 1
21129 1.289853 -0.6665182 0.7217043 2
21130 1.289853 -0.6665182 0.7217043 3
21131 1.289853 -0.6665182 0.7217043 2
21132 1.289853 -0.6665182 0.7217043 2
21133 1.289853 -0.6665182 0.7217043 2
21134 1.289853 -0.6665182 0.7217043 1
21135 1.289853 -0.6665182 0.7217043 2
21136 1.289853 -0.6665182 0.7217043 2
21137 1.289853 -0.6665182 0.7217043 3
21138 1.285951 -0.6510341 0.7217165 3
21139 1.285951 -0.6510341 0.7217165 1
21140 1.285951 -0.6510341 0.7217165 2
21141 1.285951 -0.6510341 0.7217165 2
21142 1.285951 -0.6510341 0.7217165 2
21143 1.285951 -0.6510341 0.7217165 2
21144 1.285951 -0.6510341 0.7217165 3
21145 1.285951 -0.6510341 0.7217165 1
21146 1.285951 -0.6510341 0.7217165 1
21147 1.285951 -0.6510341 0.7217165 1
21148 1.285951 -0.6510341 0.7217165 3
21149 1.285951 -0.6510341 0.7217165 2
21150 1.285951 -0.6510341 0.7217165 3
21151 1.285951 -0.6510341 0.7217165 2
21152 1.285951 -0.6510341 0.7217165 2
21153 1.285951 -0.6510341 0.7217165 1
21154 1.285951 -0.6510341 0.7217165 2
21155 1.285951 -0.6510341 0.7217165 2
21156 1.285951 -0.6510341 0.7217165 3
21157 1.285951 -0.6510341 0.7217165 3
21158 1.285951 -0.6510341 0.7217165 1
21159 1.285951 -0.6510341 0.7217165 3
21160 1.285951 -0.6510341 0.7217165 2
21161 1.285951 -0.6510341 0.7217165 2
21162 1.285951 -0.6510341 0.7217165 2
21163 1.285951 -0.6510341 0.7217165 3
21164 1.285951 -0.6510341 0.7217165 1
21165 1.285951 -0.6510341 0.7217165 3
21166 1.285951 -0.6510341 0.7217165 1
21167 1.285951 -0.6510341 0.7217165 1
21168 1.285951 -0.6510341 0.7217165 1
21169 1.285951 -0.6510341 0.7217165 3
21170 1.285951 -0.6510341 0.7217165 3
21171 1.285951 -0.6510341 0.7217165 3
21172 1.285951 -0.6510341 0.7217165 2
21173 1.285951 -0.6510341 0.7217165 1
21174 1.285951 -0.6510341 0.7217165 3
21175 1.285951 -0.6510341 0.7217165 1
21176 1.285951 -0.6510341 0.7217165 1
21177 1.285951 -0.6510341 0.7217165 2
21178 1.285951 -0.6510341 0.7217165 3
21179 1.285951 -0.6510341 0.7217165 3
21180 1.285951 -0.6510341 0.7217165 3
21181 1.285951 -0.6510341 0.7217165 1
21182 1.285951 -0.6510341 0.7217165 1
21183 1.285951 -0.6510341 0.7217165 2
21184 1.285951 -0.6510341 0.7217165 3
21185 1.285951 -0.6510341 0.7217165 1
21186 1.285951 -0.6510341 0.7217165 3
21187 1.285951 -0.6510341 0.7217165 2
21188 1.285951 -0.6510341 0.7217165 3
21189 1.285951 -0.6510341 0.7217165 2
21190 1.285951 -0.6510341 0.7217165 1
21191 1.285951 -0.6510341 0.7217165 2
21192 1.285951 -0.6510341 0.7217165 3
21193 1.285951 -0.6510341 0.7217165 3
21194 1.285951 -0.6510341 0.7217165 3
21195 1.285951 -0.6510341 0.7217165 3
21196 1.285951 -0.6510341 0.7217165 1
21197 1.285951 -0.6510341 0.7217165 3
21198 1.285951 -0.6510341 0.7217165 2
21199 1.285951 -0.6510341 0.7217165 2
21200 1.285951 -0.6510341 0.7217165 1
21201 1.285951 -0.6510341 0.7217165 3
21202 1.285951 -0.6510341 0.7217165 1
21203 1.285951 -0.6510341 0.7217165 2
21204 1.285951 -0.6510341 0.7217165 1
21205 1.285951 -0.6510341 0.7217165 1
21206 1.285951 -0.6510341 0.7217165 1
21207 1.285951 -0.6510341 0.7217165 1
21208 1.285951 -0.6510341 0.7217165 3
21209 1.285951 -0.6510341 0.7217165 2
21210 1.285951 -0.6510341 0.7217165 2
21211 1.285951 -0.6510341 0.7217165 1
21212 1.285951 -0.6510341 0.7217165 3
21213 1.285951 -0.6510341 0.7217165 3
21214 1.285951 -0.6510341 0.7217165 1
21215 1.285951 -0.6510341 0.7217165 1
21216 1.285951 -0.6510341 0.7217165 3
21217 1.285951 -0.6510341 0.7217165 3
21218 1.285951 -0.6510341 0.7217165 1
21219 1.285951 -0.6510341 0.7217165 1
21220 1.285951 -0.6510341 0.7217165 3
21221 1.285951 -0.6510341 0.7217165 1
21222 1.285951 -0.6510341 0.7217165 3
21223 1.285951 -0.6510341 0.7217165 3
21224 1.285951 -0.6510341 0.7217165 3
21225 1.285951 -0.6510341 0.7217165 2
21226 1.285951 -0.6510341 0.7217165 1
21227 1.285951 -0.6510341 0.7217165 2
21228 1.285951 -0.6510341 0.7217165 1
21229 1.285951 -0.6510341 0.7217165 2
21230 1.285951 -0.6510341 0.7217165 1
21231 1.285951 -0.6510341 0.7217165 3
21232 1.285951 -0.6510341 0.7217165 2
21233 1.285951 -0.6510341 0.7217165 1
21234 1.285951 -0.6510341 0.7217165 1
21235 1.285951 -0.6510341 0.7217165 1
21236 1.285951 -0.6510341 0.7217165 1
21237 1.285951 -0.6510341 0.7217165 2
21238 1.285951 -0.6510341 0.7217165 1
21239 1.285951 -0.6510341 0.7217165 1
21240 1.285951 -0.6510341 0.7217165 2
21241 1.285951 -0.6510341 0.7217165 1
21242 1.285951 -0.6510341 0.7217165 1
21243 1.285951 -0.6510341 0.7217165 2
21244 1.285951 -0.6510341 0.7217165 3
21245 1.285951 -0.6510341 0.7217165 3
21246 1.285951 -0.6510341 0.7217165 1
21247 1.285951 -0.6510341 0.7217165 2
21248 1.285951 -0.6510341 0.7217165 1
21249 1.285951 -0.6510341 0.7217165 2
21250 1.285951 -0.6510341 0.7217165 1
21251 1.285951 -0.6510341 0.7217165 2
21252 1.285951 -0.6510341 0.7217165 2
21253 1.285951 -0.6510341 0.7217165 1
21254 1.285951 -0.6510341 0.7217165 2
21255 1.285951 -0.6510341 0.7217165 3
21256 1.285951 -0.6510341 0.7217165 2
21257 1.285951 -0.6510341 0.7217165 1
21258 1.285951 -0.6510341 0.7217165 1
21259 1.285951 -0.6510341 0.7217165 2
21260 1.285951 -0.6510341 0.7217165 2
21261 1.285951 -0.6510341 0.7217165 2
21262 1.285951 -0.6510341 0.7217165 1
21263 1.285951 -0.6510341 0.7217165 3
21264 1.285951 -0.6510341 0.7217165 3
21265 1.285951 -0.6510341 0.7217165 3
21266 1.285951 -0.6510341 0.7217165 2
21267 1.285951 -0.6510341 0.7217165 2
21268 1.285951 -0.6510341 0.7217165 1
21269 1.285951 -0.6510341 0.7217165 1
21270 1.285951 -0.6510341 0.7217165 3
21271 1.285951 -0.6510341 0.7217165 3
21272 1.285951 -0.6510341 0.7217165 2
21273 1.285951 -0.6510341 0.7217165 3
21274 1.285951 -0.6510341 0.7217165 1
21275 1.285951 -0.6510341 0.7217165 3
21276 1.285951 -0.6510341 0.7217165 2
21277 1.285951 -0.6510341 0.7217165 2
21278 1.285951 -0.6510341 0.7217165 3
21279 1.285951 -0.6510341 0.7217165 1
21280 1.285951 -0.6510341 0.7217165 2
21281 1.285951 -0.6510341 0.7217165 3
21282 1.285951 -0.6510341 0.7217165 1
21283 1.285951 -0.6510341 0.7217165 1
21284 1.285951 -0.6510341 0.7217165 1
21285 1.285951 -0.6510341 0.7217165 1
21286 1.285951 -0.6510341 0.7217165 3
21287 1.285951 -0.6510341 0.7217165 2
21288 1.285951 -0.6510341 0.7217165 2
21289 1.285951 -0.6510341 0.7217165 2
21290 1.285951 -0.6510341 0.7217165 2
21291 1.285951 -0.6510341 0.7217165 1
21292 1.285951 -0.6510341 0.7217165 3
21293 1.285951 -0.6510341 0.7217165 1
21294 1.285951 -0.6510341 0.7217165 1
21295 1.285951 -0.6510341 0.7217165 3
21296 1.285951 -0.6510341 0.7217165 3
21297 1.285951 -0.6510341 0.7217165 1
21298 1.285951 -0.6510341 0.7217165 1
21299 1.285951 -0.6510341 0.7217165 1
21300 1.285951 -0.6510341 0.7217165 1
21301 1.285951 -0.6510341 0.7217165 3
21302 1.285951 -0.6510341 0.7217165 3
21303 1.285951 -0.6510341 0.7217165 2
21304 1.285951 -0.6510341 0.7217165 1
21305 1.285951 -0.6510341 0.7217165 2
21306 1.285951 -0.6510341 0.7217165 2
21307 1.285951 -0.6510341 0.7217165 2
21308 1.285951 -0.6510341 0.7217165 2
21309 1.285951 -0.6510341 0.7217165 3
21310 1.285951 -0.6510341 0.7217165 2
21311 1.285951 -0.6510341 0.7217165 1
21312 1.285951 -0.6510341 0.7217165 3
21313 1.285951 -0.6510341 0.7217165 1
21314 1.285951 -0.6510341 0.7217165 1
21315 1.285951 -0.6510341 0.7217165 1
21316 1.285951 -0.6510341 0.7217165 2
21317 1.285951 -0.6510341 0.7217165 3
21318 1.285951 -0.6510341 0.7217165 1
21319 1.285951 -0.6510341 0.7217165 2
21320 1.285951 -0.6510341 0.7217165 3
21321 1.285951 -0.6510341 0.7217165 3
21322 1.285951 -0.6510341 0.7217165 1
21323 1.285951 -0.6510341 0.7217165 1
21324 1.285951 -0.6510341 0.7217165 1
21325 1.285951 -0.6510341 0.7217165 1
21326 1.285951 -0.6510341 0.7217165 2
21327 1.285951 -0.6510341 0.7217165 1
21328 1.285951 -0.6510341 0.7217165 1
21329 1.285951 -0.6510341 0.7217165 3
21330 1.285951 -0.6510341 0.7217165 3
21331 1.285951 -0.6510341 0.7217165 1
21332 1.285951 -0.6510341 0.7217165 1
21333 1.285951 -0.6510341 0.7217165 1
21334 1.285951 -0.6510341 0.7217165 3
21335 1.285951 -0.6510341 0.7217165 3
21336 1.285951 -0.6510341 0.7217165 2
21337 1.285951 -0.6510341 0.7217165 3
21338 1.285951 -0.6510341 0.7217165 3
21339 1.285951 -0.6510341 0.7217165 2
21340 1.285951 -0.6510341 0.7217165 2
21341 1.285951 -0.6510341 0.7217165 1
21342 1.285951 -0.6510341 0.7217165 2
21343 1.285951 -0.6510341 0.7217165 2
21344 1.285951 -0.6510341 0.7217165 2
21345 1.285951 -0.6510341 0.7217165 1
21346 1.285951 -0.6510341 0.7217165 1
21347 1.285951 -0.6510341 0.7217165 2
21348 1.285951 -0.6510341 0.7217165 2
21349 1.285951 -0.6510341 0.7217165 3
21350 1.285951 -0.6510341 0.7217165 2
21351 1.285951 -0.6510341 0.7217165 1
21352 1.285951 -0.6510341 0.7217165 3
21353 1.285951 -0.6510341 0.7217165 1
21354 1.285951 -0.6510341 0.7217165 2
21355 1.285951 -0.6510341 0.7217165 1
21356 1.285951 -0.6510341 0.7217165 2
21357 1.285951 -0.6510341 0.7217165 3
21358 1.285951 -0.6510341 0.7217165 2
21359 1.285951 -0.6510341 0.7217165 1
21360 1.285951 -0.6510341 0.7217165 3
21361 1.285951 -0.6510341 0.7217165 1
21362 1.285951 -0.6510341 0.7217165 3
21363 1.285951 -0.6510341 0.7217165 3
21364 1.285951 -0.6510341 0.7217165 1
21365 1.285951 -0.6510341 0.7217165 1
21366 1.285951 -0.6510341 0.7217165 3
21367 1.285951 -0.6510341 0.7217165 3
21368 1.285951 -0.6510341 0.7217165 1
21369 1.285951 -0.6510341 0.7217165 3
21370 1.285951 -0.6510341 0.7217165 2
21371 1.285951 -0.6510341 0.7217165 2
21372 1.285951 -0.6510341 0.7217165 1
21373 1.285951 -0.6510341 0.7217165 1
21374 1.285951 -0.6510341 0.7217165 1
21375 1.285951 -0.6510341 0.7217165 1
21376 1.285951 -0.6510341 0.7217165 1
21377 1.285951 -0.6510341 0.7217165 3
21378 1.285951 -0.6510341 0.7217165 3
21379 1.285951 -0.6510341 0.7217165 1
21380 1.285951 -0.6510341 0.7217165 2
21381 1.285951 -0.6510341 0.7217165 1
21382 1.285951 -0.6510341 0.7217165 3
21383 1.285951 -0.6510341 0.7217165 3
21384 1.285951 -0.6510341 0.7217165 1
21385 1.285951 -0.6510341 0.7217165 3
21386 1.285951 -0.6510341 0.7217165 3
21387 1.285951 -0.6510341 0.7217165 2
21388 1.285951 -0.6510341 0.7217165 3
21389 1.285951 -0.6510341 0.7217165 3
21390 1.285951 -0.6510341 0.7217165 2
21391 1.285951 -0.6510341 0.7217165 3
21392 1.285951 -0.6510341 0.7217165 3
21393 1.285951 -0.6510341 0.7217165 3
21394 1.285951 -0.6510341 0.7217165 1
21395 1.285951 -0.6510341 0.7217165 3
21396 1.285951 -0.6510341 0.7217165 1
21397 1.285951 -0.6510341 0.7217165 3
21398 1.285951 -0.6510341 0.7217165 3
21399 1.285951 -0.6510341 0.7217165 2
21400 1.285951 -0.6510341 0.7217165 1
21401 1.285951 -0.6510341 0.7217165 3
21402 1.285951 -0.6510341 0.7217165 2
21403 1.285951 -0.6510341 0.7217165 3
21404 1.285951 -0.6510341 0.7217165 2
21405 1.285951 -0.6510341 0.7217165 1
21406 1.285951 -0.6510341 0.7217165 2
21407 1.285951 -0.6510341 0.7217165 2
21408 1.285951 -0.6510341 0.7217165 1
21409 1.285951 -0.6510341 0.7217165 3
21410 1.285951 -0.6510341 0.7217165 2
21411 1.285951 -0.6510341 0.7217165 2
21412 1.285951 -0.6510341 0.7217165 1
21413 1.285951 -0.6510341 0.7217165 1
21414 1.285951 -0.6510341 0.7217165 2
21415 1.285951 -0.6510341 0.7217165 3
21416 1.285951 -0.6510341 0.7217165 1
21417 1.285951 -0.6510341 0.7217165 1
21418 1.285951 -0.6510341 0.7217165 3
21419 1.285951 -0.6510341 0.7217165 3
21420 1.285951 -0.6510341 0.7217165 1
21421 1.285951 -0.6510341 0.7217165 1
21422 1.285951 -0.6510341 0.7217165 3
21423 1.285951 -0.6510341 0.7217165 1
21424 1.285951 -0.6510341 0.7217165 3
21425 1.285951 -0.6510341 0.7217165 2
21426 1.285951 -0.6510341 0.7217165 1
21427 1.285951 -0.6510341 0.7217165 1
21428 1.285951 -0.6510341 0.7217165 2
21429 1.285951 -0.6510341 0.7217165 2
21430 1.285951 -0.6510341 0.7217165 1
21431 1.285951 -0.6510341 0.7217165 3
21432 1.285951 -0.6510341 0.7217165 1
21433 1.285951 -0.6510341 0.7217165 2
21434 1.285951 -0.6510341 0.7217165 1
21435 1.285951 -0.6510341 0.7217165 2
21436 1.285951 -0.6510341 0.7217165 1
21437 1.285951 -0.6510341 0.7217165 3
21438 1.285951 -0.6510341 0.7217165 3
21439 1.285951 -0.6510341 0.7217165 1
21440 1.285951 -0.6510341 0.7217165 1
21441 1.285951 -0.6510341 0.7217165 1
21442 1.285951 -0.6510341 0.7217165 3
21443 1.285951 -0.6510341 0.7217165 3
21444 1.285951 -0.6510341 0.7217165 1
21445 1.285951 -0.6510341 0.7217165 1
21446 1.285951 -0.6510341 0.7217165 1
21447 1.285951 -0.6510341 0.7217165 1
21448 1.285951 -0.6510341 0.7217165 2
21449 1.285951 -0.6510341 0.7217165 1
21450 1.285951 -0.6510341 0.7217165 1
21451 1.285951 -0.6510341 0.7217165 3
21452 1.285951 -0.6510341 0.7217165 3
21453 1.285951 -0.6510341 0.7217165 2
21454 1.285951 -0.6510341 0.7217165 2
21455 1.285951 -0.6510341 0.7217165 2
21456 1.285951 -0.6510341 0.7217165 3
21457 1.285951 -0.6510341 0.7217165 1
21458 1.285951 -0.6510341 0.7217165 1
21459 1.285951 -0.6510341 0.7217165 1
21460 1.285951 -0.6510341 0.7217165 2
21461 1.285951 -0.6510341 0.7217165 3
21462 1.285951 -0.6510341 0.7217165 3
21463 1.285951 -0.6510341 0.7217165 2
21464 1.285951 -0.6510341 0.7217165 1
21465 1.285951 -0.6510341 0.7217165 2
21466 1.285951 -0.6510341 0.7217165 1
21467 1.285951 -0.6510341 0.7217165 3
21468 1.285951 -0.6510341 0.7217165 2
21469 1.285951 -0.6510341 0.7217165 2
21470 1.285951 -0.6510341 0.7217165 2
21471 1.285951 -0.6510341 0.7217165 3
21472 1.285951 -0.6510341 0.7217165 1
21473 1.285951 -0.6510341 0.7217165 1
21474 1.285951 -0.6510341 0.7217165 1
21475 1.285951 -0.6510341 0.7217165 3
21476 1.285951 -0.6510341 0.7217165 1
21477 1.285951 -0.6510341 0.7217165 2
21478 1.285951 -0.6510341 0.7217165 2
21479 1.285951 -0.6510341 0.7217165 2
21480 1.285951 -0.6510341 0.7217165 3
21481 1.285951 -0.6510341 0.7217165 1
21482 1.285951 -0.6510341 0.7217165 1
21483 1.285951 -0.6510341 0.7217165 2
21484 1.285951 -0.6510341 0.7217165 1
21485 1.285951 -0.6510341 0.7217165 3
21486 1.285951 -0.6510341 0.7217165 2
21487 1.285951 -0.6510341 0.7217165 3
21488 1.285951 -0.6510341 0.7217165 1
21489 1.285951 -0.6510341 0.7217165 1
21490 1.285951 -0.6510341 0.7217165 1
21491 1.285951 -0.6510341 0.7217165 3
21492 1.285951 -0.6510341 0.7217165 2
21493 1.285951 -0.6510341 0.7217165 2
21494 1.285951 -0.6510341 0.7217165 1
21495 1.285951 -0.6510341 0.7217165 3
21496 1.285951 -0.6510341 0.7217165 3
21497 1.285951 -0.6510341 0.7217165 3
21498 1.285951 -0.6510341 0.7217165 1
21499 1.285951 -0.6510341 0.7217165 2
21500 1.285951 -0.6510341 0.7217165 2
21501 1.285951 -0.6510341 0.7217165 2
21502 1.285951 -0.6510341 0.7217165 3
21503 1.285951 -0.6510341 0.7217165 2
21504 1.285951 -0.6510341 0.7217165 3
21505 1.285951 -0.6510341 0.7217165 1
21506 1.285951 -0.6510341 0.7217165 3
21507 1.285951 -0.6510341 0.7217165 1
21508 1.285951 -0.6510341 0.7217165 3
21509 1.285951 -0.6510341 0.7217165 1
21510 1.285951 -0.6510341 0.7217165 1
21511 1.285951 -0.6510341 0.7217165 2
21512 1.285951 -0.6510341 0.7217165 3
21513 1.285951 -0.6510341 0.7217165 3
21514 1.285951 -0.6510341 0.7217165 2
21515 1.285951 -0.6510341 0.7217165 3
21516 1.285951 -0.6510341 0.7217165 3
21517 1.285951 -0.6510341 0.7217165 3
21518 1.285951 -0.6510341 0.7217165 2
21519 1.285951 -0.6510341 0.7217165 1
21520 1.285951 -0.6510341 0.7217165 2
21521 1.285951 -0.6510341 0.7217165 1
21522 1.285951 -0.6510341 0.7217165 1
21523 1.285951 -0.6510341 0.7217165 1
21524 1.285951 -0.6510341 0.7217165 3
21525 1.285951 -0.6510341 0.7217165 3
21526 1.285951 -0.6510341 0.7217165 2
21527 1.285951 -0.6510341 0.7217165 3
21528 1.285951 -0.6510341 0.7217165 2
21529 1.285951 -0.6510341 0.7217165 2
21530 1.285951 -0.6510341 0.7217165 1
21531 1.285951 -0.6510341 0.7217165 2
21532 1.285951 -0.6510341 0.7217165 1
21533 1.285951 -0.6510341 0.7217165 1
21534 1.285951 -0.6510341 0.7217165 3
21535 1.285951 -0.6510341 0.7217165 1
21536 1.285951 -0.6510341 0.7217165 1
21537 1.285951 -0.6510341 0.7217165 1
21538 1.285951 -0.6510341 0.7217165 1
21539 1.285951 -0.6510341 0.7217165 3
21540 1.285951 -0.6510341 0.7217165 2
21541 1.285951 -0.6510341 0.7217165 2
21542 1.285951 -0.6510341 0.7217165 2
21543 1.285951 -0.6510341 0.7217165 3
21544 1.285951 -0.6510341 0.7217165 1
21545 1.285951 -0.6510341 0.7217165 3
21546 1.285951 -0.6510341 0.7217165 2
21547 1.285951 -0.6510341 0.7217165 2
21548 1.285951 -0.6510341 0.7217165 3
21549 1.285951 -0.6510341 0.7217165 1
21550 1.285951 -0.6510341 0.7217165 1
21551 1.285951 -0.6510341 0.7217165 3
21552 1.285951 -0.6510341 0.7217165 1
21553 1.285951 -0.6510341 0.7217165 1
21554 1.285951 -0.6510341 0.7217165 1
21555 1.285951 -0.6510341 0.7217165 2
21556 1.285951 -0.6510341 0.7217165 3
21557 1.285951 -0.6510341 0.7217165 1
21558 1.285951 -0.6510341 0.7217165 1
21559 1.285951 -0.6510341 0.7217165 1
21560 1.285951 -0.6510341 0.7217165 2
21561 1.285951 -0.6510341 0.7217165 1
21562 1.285951 -0.6510341 0.7217165 3
21563 1.285951 -0.6510341 0.7217165 2
21564 1.285951 -0.6510341 0.7217165 3
21565 1.285951 -0.6510341 0.7217165 2
21566 1.285951 -0.6510341 0.7217165 2
21567 1.285951 -0.6510341 0.7217165 3
21568 1.285951 -0.6510341 0.7217165 2
21569 1.285951 -0.6510341 0.7217165 1
21570 1.285951 -0.6510341 0.7217165 2
21571 1.285951 -0.6510341 0.7217165 3
21572 1.285951 -0.6510341 0.7217165 1
21573 1.285951 -0.6510341 0.7217165 3
21574 1.285951 -0.6510341 0.7217165 2
21575 1.285951 -0.6510341 0.7217165 3
21576 1.285951 -0.6510341 0.7217165 3
21577 1.285951 -0.6510341 0.7217165 1
21578 1.285951 -0.6510341 0.7217165 2
21579 1.285951 -0.6510341 0.7217165 2
21580 1.285951 -0.6510341 0.7217165 3
21581 1.285951 -0.6510341 0.7217165 1
21582 1.285951 -0.6510341 0.7217165 2
21583 1.285951 -0.6510341 0.7217165 2
21584 1.285951 -0.6510341 0.7217165 1
21585 1.285951 -0.6510341 0.7217165 1
21586 1.285951 -0.6510341 0.7217165 3
21587 1.285951 -0.6510341 0.7217165 1
21588 1.285951 -0.6510341 0.7217165 1
21589 1.285951 -0.6510341 0.7217165 1
21590 1.285951 -0.6510341 0.7217165 1
21591 1.285951 -0.6510341 0.7217165 3
21592 1.285951 -0.6510341 0.7217165 2
21593 1.285951 -0.6510341 0.7217165 2
21594 1.285951 -0.6510341 0.7217165 3
21595 1.285951 -0.6510341 0.7217165 1
21596 1.285951 -0.6510341 0.7217165 2
21597 1.285951 -0.6510341 0.7217165 3
21598 1.285951 -0.6510341 0.7217165 3
21599 1.285951 -0.6510341 0.7217165 2
21600 1.285951 -0.6510341 0.7217165 1
21601 1.285951 -0.6510341 0.7217165 3
21602 1.285951 -0.6510341 0.7217165 3
21603 1.285951 -0.6510341 0.7217165 3
21604 1.285951 -0.6510341 0.7217165 1
21605 1.285951 -0.6510341 0.7217165 3
21606 1.285951 -0.6510341 0.7217165 1
21607 1.285951 -0.6510341 0.7217165 3
21608 1.285951 -0.6510341 0.7217165 3
21609 1.285951 -0.6510341 0.7217165 3
21610 1.285951 -0.6510341 0.7217165 3
21611 1.285951 -0.6510341 0.7217165 3
21612 1.285951 -0.6510341 0.7217165 1
21613 1.285951 -0.6510341 0.7217165 3
21614 1.285951 -0.6510341 0.7217165 2
21615 1.285951 -0.6510341 0.7217165 3
21616 1.285951 -0.6510341 0.7217165 1
21617 1.285951 -0.6510341 0.7217165 1
21618 1.285951 -0.6510341 0.7217165 1
21619 1.285951 -0.6510341 0.7217165 2
21620 1.285951 -0.6510341 0.7217165 1
21621 1.285951 -0.6510341 0.7217165 2
21622 1.285951 -0.6510341 0.7217165 2
21623 1.285951 -0.6510341 0.7217165 3
21624 1.285951 -0.6510341 0.7217165 1
21625 1.285951 -0.6510341 0.7217165 2
21626 1.285951 -0.6510341 0.7217165 1
21627 1.285951 -0.6510341 0.7217165 2
21628 1.285951 -0.6510341 0.7217165 3
21629 1.285951 -0.6510341 0.7217165 3
21630 1.285951 -0.6510341 0.7217165 2
21631 1.285951 -0.6510341 0.7217165 1
21632 1.285951 -0.6510341 0.7217165 2
21633 1.285951 -0.6510341 0.7217165 3
21634 1.285951 -0.6510341 0.7217165 1
21635 1.285951 -0.6510341 0.7217165 3
21636 1.285951 -0.6510341 0.7217165 3
21637 1.285951 -0.6510341 0.7217165 3
21638 1.285951 -0.6510341 0.7217165 1
21639 1.285951 -0.6510341 0.7217165 2
21640 1.285951 -0.6510341 0.7217165 3
21641 1.285951 -0.6510341 0.7217165 1
21642 1.285951 -0.6510341 0.7217165 2
21643 1.285951 -0.6510341 0.7217165 3
21644 1.285951 -0.6510341 0.7217165 1
21645 1.285951 -0.6510341 0.7217165 2
21646 1.285951 -0.6510341 0.7217165 1
21647 1.285951 -0.6510341 0.7217165 3
21648 1.285951 -0.6510341 0.7217165 3
21649 1.285951 -0.6510341 0.7217165 3
21650 1.285951 -0.6510341 0.7217165 3
21651 1.285951 -0.6510341 0.7217165 3
21652 1.285951 -0.6510341 0.7217165 2
21653 1.285951 -0.6510341 0.7217165 2
21654 1.285951 -0.6510341 0.7217165 2
21655 1.285951 -0.6510341 0.7217165 2
21656 1.285951 -0.6510341 0.7217165 1
21657 1.285951 -0.6510341 0.7217165 3
21658 1.285951 -0.6510341 0.7217165 1
21659 1.285951 -0.6510341 0.7217165 3
21660 1.285951 -0.6510341 0.7217165 2
21661 1.285951 -0.6510341 0.7217165 3
21662 1.285951 -0.6510341 0.7217165 2
21663 1.285951 -0.6510341 0.7217165 2
21664 1.285951 -0.6510341 0.7217165 1
21665 1.285951 -0.6510341 0.7217165 1
21666 1.285951 -0.6510341 0.7217165 1
21667 1.285951 -0.6510341 0.7217165 2
21668 1.285951 -0.6510341 0.7217165 1
21669 1.285951 -0.6510341 0.7217165 3
21670 1.285951 -0.6510341 0.7217165 1
21671 1.285951 -0.6510341 0.7217165 2
21672 1.285951 -0.6510341 0.7217165 1
21673 1.285951 -0.6510341 0.7217165 1
21674 1.285951 -0.6510341 0.7217165 1
21675 1.285951 -0.6510341 0.7217165 3
21676 1.285951 -0.6510341 0.7217165 3
21677 1.285951 -0.6510341 0.7217165 1
21678 1.285951 -0.6510341 0.7217165 1
21679 1.285951 -0.6510341 0.7217165 2
21680 1.285951 -0.6510341 0.7217165 3
21681 1.285951 -0.6510341 0.7217165 1
21682 1.285951 -0.6510341 0.7217165 1
21683 1.285951 -0.6510341 0.7217165 3
21684 1.285951 -0.6510341 0.7217165 3
21685 1.285951 -0.6510341 0.7217165 1
21686 1.285951 -0.6510341 0.7217165 2
21687 1.285951 -0.6510341 0.7217165 3
21688 1.285951 -0.6510341 0.7217165 3
21689 1.285951 -0.6510341 0.7217165 3
21690 1.285951 -0.6510341 0.7217165 1
21691 1.285951 -0.6510341 0.7217165 3
21692 1.285951 -0.6510341 0.7217165 3
21693 1.285951 -0.6510341 0.7217165 1
21694 1.285951 -0.6510341 0.7217165 2
21695 1.285951 -0.6510341 0.7217165 3
21696 1.285951 -0.6510341 0.7217165 2
21697 1.285951 -0.6510341 0.7217165 2
21698 1.285951 -0.6510341 0.7217165 2
21699 1.285951 -0.6510341 0.7217165 2
21700 1.285951 -0.6510341 0.7217165 1
21701 1.285951 -0.6510341 0.7217165 3
21702 1.285951 -0.6510341 0.7217165 2
21703 1.285951 -0.6510341 0.7217165 3
21704 1.285951 -0.6510341 0.7217165 1
21705 1.285951 -0.6510341 0.7217165 3
21706 1.285951 -0.6510341 0.7217165 2
21707 1.285951 -0.6510341 0.7217165 3
21708 1.285951 -0.6510341 0.7217165 3
21709 1.285951 -0.6510341 0.7217165 3
21710 1.285951 -0.6510341 0.7217165 1
21711 1.285951 -0.6510341 0.7217165 1
21712 1.285951 -0.6510341 0.7217165 2
21713 1.285951 -0.6510341 0.7217165 2
21714 1.285951 -0.6510341 0.7217165 3
21715 1.285951 -0.6510341 0.7217165 3
21716 1.285951 -0.6510341 0.7217165 1
21717 1.285951 -0.6510341 0.7217165 1
21718 1.285951 -0.6510341 0.7217165 2
21719 1.285951 -0.6510341 0.7217165 2
21720 1.285951 -0.6510341 0.7217165 2
21721 1.285951 -0.6510341 0.7217165 3
21722 1.285951 -0.6510341 0.7217165 3
21723 1.285951 -0.6510341 0.7217165 1
21724 1.285951 -0.6510341 0.7217165 2
21725 1.285951 -0.6510341 0.7217165 3
21726 1.285951 -0.6510341 0.7217165 1
21727 1.285951 -0.6510341 0.7217165 1
21728 1.285951 -0.6510341 0.7217165 1
21729 1.285951 -0.6510341 0.7217165 2
21730 1.285951 -0.6510341 0.7217165 2
21731 1.285951 -0.6510341 0.7217165 2
21732 1.285951 -0.6510341 0.7217165 2
21733 1.285951 -0.6510341 0.7217165 2
21734 1.285951 -0.6510341 0.7217165 1
21735 1.285951 -0.6510341 0.7217165 1
21736 1.285951 -0.6510341 0.7217165 1
21737 1.285951 -0.6510341 0.7217165 2
21738 1.285951 -0.6510341 0.7217165 1
21739 1.285951 -0.6510341 0.7217165 3
21740 1.285951 -0.6510341 0.7217165 1
21741 1.285951 -0.6510341 0.7217165 2
21742 1.285951 -0.6510341 0.7217165 2
21743 1.285951 -0.6510341 0.7217165 2
21744 1.285951 -0.6510341 0.7217165 2
21745 1.285951 -0.6510341 0.7217165 3
21746 1.285951 -0.6510341 0.7217165 3
21747 1.285951 -0.6510341 0.7217165 1
21748 1.285951 -0.6510341 0.7217165 2
21749 1.285951 -0.6510341 0.7217165 1
21750 1.285951 -0.6510341 0.7217165 3
21751 1.285951 -0.6510341 0.7217165 1
21752 1.285951 -0.6510341 0.7217165 3
21753 1.285951 -0.6510341 0.7217165 2
21754 1.285951 -0.6510341 0.7217165 3
21755 1.285951 -0.6510341 0.7217165 3
21756 1.285951 -0.6510341 0.7217165 1
21757 1.285951 -0.6510341 0.7217165 3
21758 1.285951 -0.6510341 0.7217165 3
21759 1.285951 -0.6510341 0.7217165 3
21760 1.285951 -0.6510341 0.7217165 1
21761 1.285951 -0.6510341 0.7217165 3
21762 1.285951 -0.6510341 0.7217165 1
21763 1.285951 -0.6510341 0.7217165 1
21764 1.285951 -0.6510341 0.7217165 3
21765 1.285951 -0.6510341 0.7217165 1
21766 1.285951 -0.6510341 0.7217165 2
21767 1.285951 -0.6510341 0.7217165 2
21768 1.285951 -0.6510341 0.7217165 1
21769 1.285951 -0.6510341 0.7217165 1
21770 1.285951 -0.6510341 0.7217165 2
21771 1.285951 -0.6510341 0.7217165 3
21772 1.285951 -0.6510341 0.7217165 3
21773 1.285951 -0.6510341 0.7217165 3
21774 1.285951 -0.6510341 0.7217165 2
21775 1.285951 -0.6510341 0.7217165 2
21776 1.285951 -0.6510341 0.7217165 2
21777 1.285951 -0.6510341 0.7217165 1
21778 1.285951 -0.6510341 0.7217165 3
21779 1.285951 -0.6510341 0.7217165 3
21780 1.285951 -0.6510341 0.7217165 3
21781 1.285951 -0.6510341 0.7217165 1
21782 1.285951 -0.6510341 0.7217165 2
21783 1.285951 -0.6510341 0.7217165 3
21784 1.285951 -0.6510341 0.7217165 1
21785 1.285951 -0.6510341 0.7217165 2
21786 1.285951 -0.6510341 0.7217165 3
21787 1.285951 -0.6510341 0.7217165 1
21788 1.285951 -0.6510341 0.7217165 3
21789 1.285951 -0.6510341 0.7217165 3
21790 1.285951 -0.6510341 0.7217165 2
21791 1.285951 -0.6510341 0.7217165 1
21792 1.285951 -0.6510341 0.7217165 2
21793 1.285951 -0.6510341 0.7217165 1
21794 1.285951 -0.6510341 0.7217165 3
21795 1.285951 -0.6510341 0.7217165 3
21796 1.285951 -0.6510341 0.7217165 2
21797 1.285951 -0.6510341 0.7217165 1
21798 1.285951 -0.6510341 0.7217165 1
21799 1.285951 -0.6510341 0.7217165 1
21800 1.285951 -0.6510341 0.7217165 1
21801 1.285951 -0.6510341 0.7217165 1
21802 1.285951 -0.6510341 0.7217165 2
21803 1.285951 -0.6510341 0.7217165 1
21804 1.285951 -0.6510341 0.7217165 2
21805 1.285951 -0.6510341 0.7217165 2
21806 1.285951 -0.6510341 0.7217165 3
21807 1.285951 -0.6510341 0.7217165 2
21808 1.285951 -0.6510341 0.7217165 1
21809 1.285951 -0.6510341 0.7217165 2
21810 1.285951 -0.6510341 0.7217165 1
21811 1.285951 -0.6510341 0.7217165 1
21812 1.285951 -0.6510341 0.7217165 2
21813 1.285951 -0.6510341 0.7217165 3
21814 1.285951 -0.6510341 0.7217165 2
21815 1.285951 -0.6510341 0.7217165 3
21816 1.285951 -0.6510341 0.7217165 2
21817 1.285951 -0.6510341 0.7217165 2
21818 1.285951 -0.6510341 0.7217165 1
21819 1.285951 -0.6510341 0.7217165 1
21820 1.285951 -0.6510341 0.7217165 3
21821 1.285951 -0.6510341 0.7217165 3
21822 1.285951 -0.6510341 0.7217165 2
21823 1.285951 -0.6510341 0.7217165 3
21824 1.285951 -0.6510341 0.7217165 2
21825 1.285951 -0.6510341 0.7217165 1
21826 1.285951 -0.6510341 0.7217165 2
21827 1.285951 -0.6510341 0.7217165 3
21828 1.285951 -0.6510341 0.7217165 3
21829 1.285951 -0.6510341 0.7217165 2
21830 1.285951 -0.6510341 0.7217165 3
21831 1.285951 -0.6510341 0.7217165 1
21832 1.285951 -0.6510341 0.7217165 1
21833 1.285951 -0.6510341 0.7217165 2
21834 1.285951 -0.6510341 0.7217165 1
21835 1.285951 -0.6510341 0.7217165 1
21836 1.285951 -0.6510341 0.7217165 3
21837 1.285951 -0.6510341 0.7217165 2
21838 1.285951 -0.6510341 0.7217165 1
21839 1.285951 -0.6510341 0.7217165 1
21840 1.285951 -0.6510341 0.7217165 2
21841 1.285951 -0.6510341 0.7217165 3
21842 1.285951 -0.6510341 0.7217165 3
21843 1.285951 -0.6510341 0.7217165 2
21844 1.285951 -0.6510341 0.7217165 2
21845 1.285951 -0.6510341 0.7217165 1
21846 1.285951 -0.6510341 0.7217165 1
21847 1.285951 -0.6510341 0.7217165 1
21848 1.285951 -0.6510341 0.7217165 3
21849 1.285951 -0.6510341 0.7217165 3
21850 1.285951 -0.6510341 0.7217165 3
21851 1.285951 -0.6510341 0.7217165 3
21852 1.285951 -0.6510341 0.7217165 3
21853 1.285951 -0.6510341 0.7217165 2
21854 1.285951 -0.6510341 0.7217165 1
21855 1.285951 -0.6510341 0.7217165 3
21856 1.285951 -0.6510341 0.7217165 2
21857 1.285951 -0.6510341 0.7217165 1
21858 1.285951 -0.6510341 0.7217165 3
21859 1.285951 -0.6510341 0.7217165 3
21860 1.285951 -0.6510341 0.7217165 3
21861 1.285951 -0.6510341 0.7217165 1
21862 1.285951 -0.6510341 0.7217165 2
21863 1.285951 -0.6510341 0.7217165 3
21864 1.285951 -0.6510341 0.7217165 1
21865 1.285951 -0.6510341 0.7217165 3
21866 1.285951 -0.6510341 0.7217165 1
21867 1.285951 -0.6510341 0.7217165 1
21868 1.285951 -0.6510341 0.7217165 2
21869 1.285951 -0.6510341 0.7217165 2
21870 1.285951 -0.6510341 0.7217165 2
21871 1.285951 -0.6510341 0.7217165 3
21872 1.285951 -0.6510341 0.7217165 1
21873 1.285951 -0.6510341 0.7217165 3
21874 1.285951 -0.6510341 0.7217165 3
21875 1.285951 -0.6510341 0.7217165 3
21876 1.285951 -0.6510341 0.7217165 3
21877 1.285951 -0.6510341 0.7217165 2
21878 1.285951 -0.6510341 0.7217165 3
21879 1.285951 -0.6510341 0.7217165 2
21880 1.285951 -0.6510341 0.7217165 2
21881 1.285951 -0.6510341 0.7217165 2
21882 1.285951 -0.6510341 0.7217165 1
21883 1.285951 -0.6510341 0.7217165 2
21884 1.285951 -0.6510341 0.7217165 1
21885 1.285951 -0.6510341 0.7217165 3
21886 1.285951 -0.6510341 0.7217165 3
21887 1.285951 -0.6510341 0.7217165 2
21888 1.285951 -0.6510341 0.7217165 1
21889 1.285951 -0.6510341 0.7217165 3
21890 1.285951 -0.6510341 0.7217165 3
21891 1.285951 -0.6510341 0.7217165 3
21892 1.285951 -0.6510341 0.7217165 2
21893 1.285951 -0.6510341 0.7217165 3
21894 1.285951 -0.6510341 0.7217165 3
21895 1.285951 -0.6510341 0.7217165 3
21896 1.285951 -0.6510341 0.7217165 2
21897 1.285951 -0.6510341 0.7217165 2
21898 1.285951 -0.6510341 0.7217165 3
21899 1.285951 -0.6510341 0.7217165 1
21900 1.285951 -0.6510341 0.7217165 2
21901 1.285951 -0.6510341 0.7217165 1
21902 1.285951 -0.6510341 0.7217165 2
21903 1.285951 -0.6510341 0.7217165 2
21904 1.285951 -0.6510341 0.7217165 2
21905 1.285951 -0.6510341 0.7217165 3
21906 1.285951 -0.6510341 0.7217165 2
21907 1.285951 -0.6510341 0.7217165 3
21908 1.285951 -0.6510341 0.7217165 1
21909 1.285951 -0.6510341 0.7217165 2
21910 1.285951 -0.6510341 0.7217165 2
21911 1.285951 -0.6510341 0.7217165 2
21912 1.285951 -0.6510341 0.7217165 3
21913 1.285951 -0.6510341 0.7217165 1
21914 1.285951 -0.6510341 0.7217165 1
21915 1.285951 -0.6510341 0.7217165 1
21916 1.285951 -0.6510341 0.7217165 1
21917 1.285951 -0.6510341 0.7217165 3
21918 1.285951 -0.6510341 0.7217165 1
21919 1.285951 -0.6510341 0.7217165 2
21920 1.285951 -0.6510341 0.7217165 2
21921 1.285951 -0.6510341 0.7217165 1
21922 1.285951 -0.6510341 0.7217165 1
21923 1.285951 -0.6510341 0.7217165 1
21924 1.285951 -0.6510341 0.7217165 3
21925 1.285951 -0.6510341 0.7217165 1
21926 1.285951 -0.6510341 0.7217165 1
21927 1.285951 -0.6510341 0.7217165 1
21928 1.285951 -0.6510341 0.7217165 2
21929 1.285951 -0.6510341 0.7217165 3
21930 1.285951 -0.6510341 0.7217165 1
21931 1.285951 -0.6510341 0.7217165 1
21932 1.285951 -0.6510341 0.7217165 1
21933 1.285951 -0.6510341 0.7217165 2
21934 1.285951 -0.6510341 0.7217165 2
21935 1.285951 -0.6510341 0.7217165 3
21936 1.285951 -0.6510341 0.7217165 1
21937 1.285951 -0.6510341 0.7217165 2
21938 1.285951 -0.6510341 0.7217165 2
21939 1.285951 -0.6510341 0.7217165 1
21940 1.285951 -0.6510341 0.7217165 1
21941 1.285951 -0.6510341 0.7217165 1
21942 1.285951 -0.6510341 0.7217165 2
21943 1.285951 -0.6510341 0.7217165 3
21944 1.285951 -0.6510341 0.7217165 3
21945 1.285951 -0.6510341 0.7217165 2
21946 1.285951 -0.6510341 0.7217165 1
21947 1.285951 -0.6510341 0.7217165 3
21948 1.285951 -0.6510341 0.7217165 2
21949 1.285951 -0.6510341 0.7217165 1
21950 1.285951 -0.6510341 0.7217165 2
21951 1.285951 -0.6510341 0.7217165 2
21952 1.285951 -0.6510341 0.7217165 3
21953 1.285951 -0.6510341 0.7217165 2
21954 1.285951 -0.6510341 0.7217165 3
21955 1.285951 -0.6510341 0.7217165 1
21956 1.285951 -0.6510341 0.7217165 3
21957 1.285951 -0.6510341 0.7217165 1
21958 1.285951 -0.6510341 0.7217165 3
21959 1.285951 -0.6510341 0.7217165 2
21960 1.285951 -0.6510341 0.7217165 1
21961 1.285951 -0.6510341 0.7217165 1
21962 1.285951 -0.6510341 0.7217165 1
21963 1.285951 -0.6510341 0.7217165 3
21964 1.285951 -0.6510341 0.7217165 3
21965 1.285951 -0.6510341 0.7217165 2
21966 1.285951 -0.6510341 0.7217165 2
21967 1.285951 -0.6510341 0.7217165 3
21968 1.285951 -0.6510341 0.7217165 3
21969 1.285951 -0.6510341 0.7217165 1
21970 1.285951 -0.6510341 0.7217165 1
21971 1.285951 -0.6510341 0.7217165 3
21972 1.285951 -0.6510341 0.7217165 1
21973 1.285951 -0.6510341 0.7217165 2
21974 1.285951 -0.6510341 0.7217165 3
21975 1.285951 -0.6510341 0.7217165 1
21976 1.285951 -0.6510341 0.7217165 3
21977 1.285951 -0.6510341 0.7217165 2
21978 1.285951 -0.6510341 0.7217165 2
21979 1.285951 -0.6510341 0.7217165 3
21980 1.285951 -0.6510341 0.7217165 2
21981 1.285951 -0.6510341 0.7217165 1
21982 1.285951 -0.6510341 0.7217165 3
21983 1.285951 -0.6510341 0.7217165 2
21984 1.285951 -0.6510341 0.7217165 1
21985 1.285951 -0.6510341 0.7217165 3
21986 1.285951 -0.6510341 0.7217165 3
21987 1.285951 -0.6510341 0.7217165 2
21988 1.285951 -0.6510341 0.7217165 1
21989 1.285951 -0.6510341 0.7217165 1
21990 1.285951 -0.6510341 0.7217165 1
21991 1.285951 -0.6510341 0.7217165 2
21992 1.285951 -0.6510341 0.7217165 1
21993 1.285951 -0.6510341 0.7217165 1
21994 1.285951 -0.6510341 0.7217165 2
21995 1.285951 -0.6510341 0.7217165 1
21996 1.285951 -0.6510341 0.7217165 3
21997 1.285951 -0.6510341 0.7217165 1
21998 1.285951 -0.6510341 0.7217165 1
21999 1.285951 -0.6510341 0.7217165 2
22000 1.285951 -0.6510341 0.7217165 2
22001 1.285951 -0.6510341 0.7217165 1
22002 1.285951 -0.6510341 0.7217165 1
22003 1.285951 -0.6510341 0.7217165 2
22004 1.285951 -0.6510341 0.7217165 2
22005 1.285951 -0.6510341 0.7217165 1
22006 1.285951 -0.6510341 0.7217165 2
22007 1.285951 -0.6510341 0.7217165 3
22008 1.285951 -0.6510341 0.7217165 2
22009 1.285951 -0.6510341 0.7217165 2
22010 1.285951 -0.6510341 0.7217165 1
22011 1.285951 -0.6510341 0.7217165 2
22012 1.285951 -0.6510341 0.7217165 2
22013 1.285951 -0.6510341 0.7217165 1
22014 1.285951 -0.6510341 0.7217165 2
22015 1.285951 -0.6510341 0.7217165 2
22016 1.285951 -0.6510341 0.7217165 1
22017 1.285951 -0.6510341 0.7217165 2
22018 1.285951 -0.6510341 0.7217165 3
22019 1.285951 -0.6510341 0.7217165 3
22020 1.285951 -0.6510341 0.7217165 3
22021 1.285951 -0.6510341 0.7217165 1
22022 1.285951 -0.6510341 0.7217165 1
22023 1.285951 -0.6510341 0.7217165 2
22024 1.285951 -0.6510341 0.7217165 1
22025 1.285951 -0.6510341 0.7217165 3
22026 1.285951 -0.6510341 0.7217165 2
22027 1.285951 -0.6510341 0.7217165 3
22028 1.285951 -0.6510341 0.7217165 2
22029 1.285951 -0.6510341 0.7217165 2
22030 1.285951 -0.6510341 0.7217165 2
22031 1.285951 -0.6510341 0.7217165 2
22032 1.285951 -0.6510341 0.7217165 2
22033 1.285951 -0.6510341 0.7217165 1
22034 1.285951 -0.6510341 0.7217165 1
22035 1.285951 -0.6510341 0.7217165 2
22036 1.285951 -0.6510341 0.7217165 1
22037 1.285951 -0.6510341 0.7217165 3
22038 1.285951 -0.6510341 0.7217165 1
22039 1.285951 -0.6510341 0.7217165 1
22040 1.285951 -0.6510341 0.7217165 2
22041 1.285951 -0.6510341 0.7217165 1
22042 1.285951 -0.6510341 0.7217165 3
22043 1.285951 -0.6510341 0.7217165 2
22044 1.285951 -0.6510341 0.7217165 3
22045 1.285951 -0.6510341 0.7217165 3
22046 1.285951 -0.6510341 0.7217165 3
22047 1.285951 -0.6510341 0.7217165 3
22048 1.285951 -0.6510341 0.7217165 2
22049 1.285951 -0.6510341 0.7217165 3
22050 1.285951 -0.6510341 0.7217165 2
22051 1.285951 -0.6510341 0.7217165 3
22052 1.285951 -0.6510341 0.7217165 1
22053 1.285951 -0.6510341 0.7217165 3
22054 1.285951 -0.6510341 0.7217165 3
22055 1.285951 -0.6510341 0.7217165 3
22056 1.285951 -0.6510341 0.7217165 2
22057 1.293526 -0.6709762 0.7267052 2
22058 1.293526 -0.6709762 0.7267052 1
22059 1.293526 -0.6709762 0.7267052 1
22060 1.293526 -0.6709762 0.7267052 3
22061 1.293526 -0.6709762 0.7267052 1
22062 1.293526 -0.6709762 0.7267052 1
22063 1.293526 -0.6709762 0.7267052 3
22064 1.293526 -0.6709762 0.7267052 2
22065 1.293526 -0.6709762 0.7267052 1
22066 1.293526 -0.6709762 0.7267052 3
22067 1.293526 -0.6709762 0.7267052 1
22068 1.293526 -0.6709762 0.7267052 1
22069 1.293526 -0.6709762 0.7267052 3
22070 1.293526 -0.6709762 0.7267052 3
22071 1.293526 -0.6709762 0.7267052 1
22072 1.293526 -0.6709762 0.7267052 2
22073 1.293526 -0.6709762 0.7267052 2
22074 1.293526 -0.6709762 0.7267052 2
22075 1.293526 -0.6709762 0.7267052 2
22076 1.293526 -0.6709762 0.7267052 3
22077 1.293526 -0.6709762 0.7267052 1
22078 1.293526 -0.6709762 0.7267052 1
22079 1.293526 -0.6709762 0.7267052 1
22080 1.293526 -0.6709762 0.7267052 2
22081 1.293526 -0.6709762 0.7267052 3
22082 1.293526 -0.6709762 0.7267052 2
22083 1.293526 -0.6709762 0.7267052 1
22084 1.293526 -0.6709762 0.7267052 1
22085 1.293526 -0.6709762 0.7267052 3
22086 1.293526 -0.6709762 0.7267052 3
22087 1.293526 -0.6709762 0.7267052 2
22088 1.293526 -0.6709762 0.7267052 3
22089 1.293526 -0.6709762 0.7267052 3
22090 1.293526 -0.6709762 0.7267052 3
22091 1.293526 -0.6709762 0.7267052 1
22092 1.293526 -0.6709762 0.7267052 3
22093 1.293526 -0.6709762 0.7267052 1
22094 1.293526 -0.6709762 0.7267052 3
22095 1.293526 -0.6709762 0.7267052 2
22096 1.293526 -0.6709762 0.7267052 3
22097 1.293526 -0.6709762 0.7267052 1
22098 1.293526 -0.6709762 0.7267052 2
22099 1.293526 -0.6709762 0.7267052 1
22100 1.293526 -0.6709762 0.7267052 2
22101 1.293526 -0.6709762 0.7267052 3
22102 1.293526 -0.6709762 0.7267052 1
22103 1.293526 -0.6709762 0.7267052 1
22104 1.293526 -0.6709762 0.7267052 2
22105 1.293526 -0.6709762 0.7267052 3
22106 1.293526 -0.6709762 0.7267052 3
22107 1.293526 -0.6709762 0.7267052 3
22108 1.293526 -0.6709762 0.7267052 3
22109 1.293526 -0.6709762 0.7267052 3
22110 1.293526 -0.6709762 0.7267052 3
22111 1.293526 -0.6709762 0.7267052 3
22112 1.293526 -0.6709762 0.7267052 1
22113 1.293526 -0.6709762 0.7267052 2
22114 1.293526 -0.6709762 0.7267052 3
22115 1.293526 -0.6709762 0.7267052 3
22116 1.293526 -0.6709762 0.7267052 2
22117 1.293526 -0.6709762 0.7267052 2
22118 1.293526 -0.6709762 0.7267052 3
22119 1.293526 -0.6709762 0.7267052 2
22120 1.293526 -0.6709762 0.7267052 1
22121 1.293526 -0.6709762 0.7267052 1
22122 1.293526 -0.6709762 0.7267052 3
22123 1.293526 -0.6709762 0.7267052 2
22124 1.293526 -0.6709762 0.7267052 3
22125 1.293526 -0.6709762 0.7267052 2
22126 1.293526 -0.6709762 0.7267052 1
22127 1.293526 -0.6709762 0.7267052 2
22128 1.293526 -0.6709762 0.7267052 2
22129 1.293526 -0.6709762 0.7267052 1
22130 1.293526 -0.6709762 0.7267052 1
22131 1.293526 -0.6709762 0.7267052 2
22132 1.293526 -0.6709762 0.7267052 2
22133 1.293526 -0.6709762 0.7267052 3
22134 1.293526 -0.6709762 0.7267052 1
22135 1.293526 -0.6709762 0.7267052 1
22136 1.293526 -0.6709762 0.7267052 2
22137 1.293526 -0.6709762 0.7267052 1
22138 1.293526 -0.6709762 0.7267052 2
22139 1.293526 -0.6709762 0.7267052 3
22140 1.293526 -0.6709762 0.7267052 2
22141 1.293526 -0.6709762 0.7267052 1
22142 1.293526 -0.6709762 0.7267052 1
22143 1.293526 -0.6709762 0.7267052 2
22144 1.293526 -0.6709762 0.7267052 3
22145 1.293526 -0.6709762 0.7267052 2
22146 1.293526 -0.6709762 0.7267052 1
22147 1.293526 -0.6709762 0.7267052 1
22148 1.293526 -0.6709762 0.7267052 1
22149 1.293526 -0.6709762 0.7267052 1
22150 1.293526 -0.6709762 0.7267052 2
22151 1.293526 -0.6709762 0.7267052 2
22152 1.293526 -0.6709762 0.7267052 2
22153 1.293526 -0.6709762 0.7267052 2
22154 1.293526 -0.6709762 0.7267052 1
22155 1.293526 -0.6709762 0.7267052 1
22156 1.293526 -0.6709762 0.7267052 2
22157 1.293526 -0.6709762 0.7267052 2
22158 1.293526 -0.6709762 0.7267052 1
22159 1.293526 -0.6709762 0.7267052 2
22160 1.293526 -0.6709762 0.7267052 3
22161 1.293526 -0.6709762 0.7267052 2
22162 1.293526 -0.6709762 0.7267052 3
22163 1.293526 -0.6709762 0.7267052 3
22164 1.293526 -0.6709762 0.7267052 1
22165 1.293526 -0.6709762 0.7267052 2
22166 1.293526 -0.6709762 0.7267052 1
22167 1.293526 -0.6709762 0.7267052 2
22168 1.293526 -0.6709762 0.7267052 3
22169 1.293526 -0.6709762 0.7267052 2
22170 1.293526 -0.6709762 0.7267052 1
22171 1.293526 -0.6709762 0.7267052 3
22172 1.293526 -0.6709762 0.7267052 2
22173 1.293526 -0.6709762 0.7267052 2
22174 1.293526 -0.6709762 0.7267052 3
22175 1.293526 -0.6709762 0.7267052 2
22176 1.293526 -0.6709762 0.7267052 2
22177 1.293526 -0.6709762 0.7267052 3
22178 1.293526 -0.6709762 0.7267052 2
22179 1.293526 -0.6709762 0.7267052 1
22180 1.293526 -0.6709762 0.7267052 1
22181 1.293526 -0.6709762 0.7267052 3
22182 1.293526 -0.6709762 0.7267052 2
22183 1.293526 -0.6709762 0.7267052 3
22184 1.293526 -0.6709762 0.7267052 2
22185 1.293526 -0.6709762 0.7267052 3
22186 1.293526 -0.6709762 0.7267052 1
22187 1.293526 -0.6709762 0.7267052 2
22188 1.293526 -0.6709762 0.7267052 3
22189 1.293526 -0.6709762 0.7267052 2
22190 1.293526 -0.6709762 0.7267052 1
22191 1.293526 -0.6709762 0.7267052 3
22192 1.293526 -0.6709762 0.7267052 3
22193 1.293526 -0.6709762 0.7267052 1
22194 1.293526 -0.6709762 0.7267052 3
22195 1.293526 -0.6709762 0.7267052 2
22196 1.293526 -0.6709762 0.7267052 1
22197 1.293526 -0.6709762 0.7267052 2
22198 1.293526 -0.6709762 0.7267052 1
22199 1.293526 -0.6709762 0.7267052 2
22200 1.293526 -0.6709762 0.7267052 3
22201 1.293526 -0.6709762 0.7267052 1
22202 1.293526 -0.6709762 0.7267052 2
22203 1.293526 -0.6709762 0.7267052 1
22204 1.293526 -0.6709762 0.7267052 1
22205 1.293526 -0.6709762 0.7267052 1
22206 1.293526 -0.6709762 0.7267052 1
22207 1.293526 -0.6709762 0.7267052 3
22208 1.293526 -0.6709762 0.7267052 2
22209 1.293526 -0.6709762 0.7267052 1
22210 1.293526 -0.6709762 0.7267052 2
22211 1.293526 -0.6709762 0.7267052 3
22212 1.293526 -0.6709762 0.7267052 2
22213 1.293526 -0.6709762 0.7267052 2
22214 1.293526 -0.6709762 0.7267052 3
22215 1.293526 -0.6709762 0.7267052 2
22216 1.293526 -0.6709762 0.7267052 2
22217 1.293526 -0.6709762 0.7267052 3
22218 1.293526 -0.6709762 0.7267052 1
22219 1.293526 -0.6709762 0.7267052 3
22220 1.293526 -0.6709762 0.7267052 2
22221 1.293526 -0.6709762 0.7267052 3
22222 1.293526 -0.6709762 0.7267052 3
22223 1.293526 -0.6709762 0.7267052 2
22224 1.293526 -0.6709762 0.7267052 1
22225 1.293526 -0.6709762 0.7267052 3
22226 1.293526 -0.6709762 0.7267052 1
22227 1.293526 -0.6709762 0.7267052 2
22228 1.293526 -0.6709762 0.7267052 2
22229 1.293526 -0.6709762 0.7267052 2
22230 1.293526 -0.6709762 0.7267052 1
22231 1.293526 -0.6709762 0.7267052 3
22232 1.293526 -0.6709762 0.7267052 2
22233 1.293526 -0.6709762 0.7267052 3
22234 1.293526 -0.6709762 0.7267052 3
22235 1.293526 -0.6709762 0.7267052 2
22236 1.293526 -0.6709762 0.7267052 1
22237 1.293526 -0.6709762 0.7267052 3
22238 1.293526 -0.6709762 0.7267052 1
22239 1.293526 -0.6709762 0.7267052 3
22240 1.293526 -0.6709762 0.7267052 2
22241 1.293526 -0.6709762 0.7267052 2
22242 1.293526 -0.6709762 0.7267052 1
22243 1.293526 -0.6709762 0.7267052 1
22244 1.293526 -0.6709762 0.7267052 3
22245 1.293526 -0.6709762 0.7267052 1
22246 1.293526 -0.6709762 0.7267052 3
22247 1.293526 -0.6709762 0.7267052 3
22248 1.293526 -0.6709762 0.7267052 1
22249 1.293526 -0.6709762 0.7267052 3
22250 1.293526 -0.6709762 0.7267052 2
22251 1.293526 -0.6709762 0.7267052 3
22252 1.293526 -0.6709762 0.7267052 1
22253 1.293526 -0.6709762 0.7267052 2
22254 1.293526 -0.6709762 0.7267052 2
22255 1.293526 -0.6709762 0.7267052 2
22256 1.293526 -0.6709762 0.7267052 3
22257 1.293526 -0.6709762 0.7267052 3
22258 1.293526 -0.6709762 0.7267052 1
22259 1.293526 -0.6709762 0.7267052 2
22260 1.293526 -0.6709762 0.7267052 2
22261 1.293526 -0.6709762 0.7267052 2
22262 1.293526 -0.6709762 0.7267052 2
22263 1.293526 -0.6709762 0.7267052 1
22264 1.293526 -0.6709762 0.7267052 1
22265 1.293526 -0.6709762 0.7267052 2
22266 1.293526 -0.6709762 0.7267052 1
22267 1.293526 -0.6709762 0.7267052 2
22268 1.293526 -0.6709762 0.7267052 2
22269 1.293526 -0.6709762 0.7267052 2
22270 1.293526 -0.6709762 0.7267052 1
22271 1.293526 -0.6709762 0.7267052 2
22272 1.293526 -0.6709762 0.7267052 3
22273 1.293526 -0.6709762 0.7267052 2
22274 1.293526 -0.6709762 0.7267052 3
22275 1.293526 -0.6709762 0.7267052 2
22276 1.293526 -0.6709762 0.7267052 3
22277 1.293526 -0.6709762 0.7267052 3
22278 1.293526 -0.6709762 0.7267052 1
22279 1.293526 -0.6709762 0.7267052 1
22280 1.293526 -0.6709762 0.7267052 3
22281 1.293526 -0.6709762 0.7267052 2
22282 1.293526 -0.6709762 0.7267052 2
22283 1.293526 -0.6709762 0.7267052 2
22284 1.293526 -0.6709762 0.7267052 3
22285 1.293526 -0.6709762 0.7267052 1
22286 1.293526 -0.6709762 0.7267052 3
22287 1.293526 -0.6709762 0.7267052 3
22288 1.293526 -0.6709762 0.7267052 2
22289 1.293526 -0.6709762 0.7267052 2
22290 1.293526 -0.6709762 0.7267052 3
22291 1.293526 -0.6709762 0.7267052 1
22292 1.293526 -0.6709762 0.7267052 3
22293 1.293526 -0.6709762 0.7267052 2
22294 1.293526 -0.6709762 0.7267052 3
22295 1.293526 -0.6709762 0.7267052 3
22296 1.293526 -0.6709762 0.7267052 2
22297 1.293526 -0.6709762 0.7267052 2
22298 1.293526 -0.6709762 0.7267052 2
22299 1.293526 -0.6709762 0.7267052 3
22300 1.293526 -0.6709762 0.7267052 1
22301 1.293526 -0.6709762 0.7267052 2
22302 1.293526 -0.6709762 0.7267052 3
22303 1.293526 -0.6709762 0.7267052 3
22304 1.293526 -0.6709762 0.7267052 1
22305 1.293526 -0.6709762 0.7267052 2
22306 1.293526 -0.6709762 0.7267052 1
22307 1.293526 -0.6709762 0.7267052 3
22308 1.293526 -0.6709762 0.7267052 1
22309 1.293526 -0.6709762 0.7267052 3
22310 1.293526 -0.6709762 0.7267052 3
22311 1.293526 -0.6709762 0.7267052 3
22312 1.293526 -0.6709762 0.7267052 2
22313 1.293526 -0.6709762 0.7267052 3
22314 1.293526 -0.6709762 0.7267052 2
22315 1.293526 -0.6709762 0.7267052 1
22316 1.293526 -0.6709762 0.7267052 3
22317 1.293526 -0.6709762 0.7267052 3
22318 1.293526 -0.6709762 0.7267052 2
22319 1.293526 -0.6709762 0.7267052 2
22320 1.293526 -0.6709762 0.7267052 2
22321 1.293526 -0.6709762 0.7267052 1
22322 1.293526 -0.6709762 0.7267052 2
22323 1.293526 -0.6709762 0.7267052 1
22324 1.293526 -0.6709762 0.7267052 1
22325 1.293526 -0.6709762 0.7267052 1
22326 1.293526 -0.6709762 0.7267052 2
22327 1.293526 -0.6709762 0.7267052 1
22328 1.293526 -0.6709762 0.7267052 2
22329 1.293526 -0.6709762 0.7267052 3
22330 1.293526 -0.6709762 0.7267052 2
22331 1.293526 -0.6709762 0.7267052 3
22332 1.293526 -0.6709762 0.7267052 3
22333 1.293526 -0.6709762 0.7267052 2
22334 1.293526 -0.6709762 0.7267052 1
22335 1.293526 -0.6709762 0.7267052 3
22336 1.293526 -0.6709762 0.7267052 2
22337 1.293526 -0.6709762 0.7267052 2
22338 1.293526 -0.6709762 0.7267052 1
22339 1.293526 -0.6709762 0.7267052 3
22340 1.293526 -0.6709762 0.7267052 1
22341 1.293526 -0.6709762 0.7267052 2
22342 1.293526 -0.6709762 0.7267052 2
22343 1.293526 -0.6709762 0.7267052 3
22344 1.293526 -0.6709762 0.7267052 3
22345 1.293526 -0.6709762 0.7267052 2
22346 1.293526 -0.6709762 0.7267052 3
22347 1.293526 -0.6709762 0.7267052 1
22348 1.293526 -0.6709762 0.7267052 2
22349 1.293526 -0.6709762 0.7267052 3
22350 1.293526 -0.6709762 0.7267052 2
22351 1.293526 -0.6709762 0.7267052 1
22352 1.293526 -0.6709762 0.7267052 1
22353 1.293526 -0.6709762 0.7267052 2
22354 1.293526 -0.6709762 0.7267052 2
22355 1.293526 -0.6709762 0.7267052 3
22356 1.293526 -0.6709762 0.7267052 3
22357 1.293526 -0.6709762 0.7267052 2
22358 1.293526 -0.6709762 0.7267052 3
22359 1.293526 -0.6709762 0.7267052 1
22360 1.293526 -0.6709762 0.7267052 2
22361 1.293526 -0.6709762 0.7267052 2
22362 1.293526 -0.6709762 0.7267052 2
22363 1.293526 -0.6709762 0.7267052 3
22364 1.293526 -0.6709762 0.7267052 1
22365 1.293526 -0.6709762 0.7267052 3
22366 1.293526 -0.6709762 0.7267052 2
22367 1.293526 -0.6709762 0.7267052 3
22368 1.293526 -0.6709762 0.7267052 1
22369 1.293526 -0.6709762 0.7267052 2
22370 1.293526 -0.6709762 0.7267052 3
22371 1.293526 -0.6709762 0.7267052 3
22372 1.293526 -0.6709762 0.7267052 2
22373 1.293526 -0.6709762 0.7267052 1
22374 1.293526 -0.6709762 0.7267052 3
22375 1.293526 -0.6709762 0.7267052 2
22376 1.293526 -0.6709762 0.7267052 3
22377 1.293526 -0.6709762 0.7267052 1
22378 1.293526 -0.6709762 0.7267052 1
22379 1.293526 -0.6709762 0.7267052 1
22380 1.293526 -0.6709762 0.7267052 1
22381 1.293526 -0.6709762 0.7267052 1
22382 1.293526 -0.6709762 0.7267052 3
22383 1.293526 -0.6709762 0.7267052 1
22384 1.293526 -0.6709762 0.7267052 3
22385 1.293526 -0.6709762 0.7267052 3
22386 1.293526 -0.6709762 0.7267052 2
22387 1.293526 -0.6709762 0.7267052 2
22388 1.293526 -0.6709762 0.7267052 1
22389 1.293526 -0.6709762 0.7267052 2
22390 1.293526 -0.6709762 0.7267052 2
22391 1.293526 -0.6709762 0.7267052 1
22392 1.293526 -0.6709762 0.7267052 2
22393 1.293526 -0.6709762 0.7267052 1
22394 1.293526 -0.6709762 0.7267052 2
22395 1.293526 -0.6709762 0.7267052 3
22396 1.293526 -0.6709762 0.7267052 1
22397 1.293526 -0.6709762 0.7267052 1
22398 1.293526 -0.6709762 0.7267052 2
22399 1.293526 -0.6709762 0.7267052 2
22400 1.293526 -0.6709762 0.7267052 3
22401 1.293526 -0.6709762 0.7267052 3
22402 1.293526 -0.6709762 0.7267052 1
22403 1.293526 -0.6709762 0.7267052 1
22404 1.293526 -0.6709762 0.7267052 3
22405 1.293526 -0.6709762 0.7267052 2
22406 1.293526 -0.6709762 0.7267052 2
22407 1.293526 -0.6709762 0.7267052 3
22408 1.293526 -0.6709762 0.7267052 1
22409 1.293526 -0.6709762 0.7267052 3
22410 1.293526 -0.6709762 0.7267052 1
22411 1.293526 -0.6709762 0.7267052 3
22412 1.293526 -0.6709762 0.7267052 1
22413 1.293526 -0.6709762 0.7267052 3
22414 1.293526 -0.6709762 0.7267052 2
22415 1.293526 -0.6709762 0.7267052 2
22416 1.293526 -0.6709762 0.7267052 3
22417 1.293526 -0.6709762 0.7267052 2
22418 1.293526 -0.6709762 0.7267052 2
22419 1.293526 -0.6709762 0.7267052 2
22420 1.293526 -0.6709762 0.7267052 2
22421 1.293526 -0.6709762 0.7267052 3
22422 1.293526 -0.6709762 0.7267052 2
22423 1.293526 -0.6709762 0.7267052 2
22424 1.293526 -0.6709762 0.7267052 3
22425 1.293526 -0.6709762 0.7267052 3
22426 1.293526 -0.6709762 0.7267052 3
22427 1.293526 -0.6709762 0.7267052 3
22428 1.293526 -0.6709762 0.7267052 1
22429 1.293526 -0.6709762 0.7267052 3
22430 1.293526 -0.6709762 0.7267052 2
22431 1.293526 -0.6709762 0.7267052 1
22432 1.293526 -0.6709762 0.7267052 1
22433 1.293526 -0.6709762 0.7267052 2
22434 1.293526 -0.6709762 0.7267052 1
22435 1.293526 -0.6709762 0.7267052 3
22436 1.293526 -0.6709762 0.7267052 2
22437 1.293526 -0.6709762 0.7267052 3
22438 1.293526 -0.6709762 0.7267052 2
22439 1.293526 -0.6709762 0.7267052 2
22440 1.293526 -0.6709762 0.7267052 1
22441 1.293526 -0.6709762 0.7267052 3
22442 1.293526 -0.6709762 0.7267052 1
22443 1.293526 -0.6709762 0.7267052 3
22444 1.293526 -0.6709762 0.7267052 3
22445 1.293526 -0.6709762 0.7267052 2
22446 1.293526 -0.6709762 0.7267052 1
22447 1.293526 -0.6709762 0.7267052 2
22448 1.293526 -0.6709762 0.7267052 1
22449 1.293526 -0.6709762 0.7267052 2
22450 1.293526 -0.6709762 0.7267052 2
22451 1.293526 -0.6709762 0.7267052 1
22452 1.293526 -0.6709762 0.7267052 1
22453 1.293526 -0.6709762 0.7267052 1
22454 1.293526 -0.6709762 0.7267052 2
22455 1.293526 -0.6709762 0.7267052 2
22456 1.293526 -0.6709762 0.7267052 3
22457 1.293526 -0.6709762 0.7267052 1
22458 1.293526 -0.6709762 0.7267052 2
22459 1.293526 -0.6709762 0.7267052 2
22460 1.293526 -0.6709762 0.7267052 2
22461 1.293526 -0.6709762 0.7267052 1
22462 1.293526 -0.6709762 0.7267052 2
22463 1.293526 -0.6709762 0.7267052 2
22464 1.293526 -0.6709762 0.7267052 2
22465 1.293526 -0.6709762 0.7267052 3
22466 1.293526 -0.6709762 0.7267052 1
22467 1.293526 -0.6709762 0.7267052 2
22468 1.293526 -0.6709762 0.7267052 1
22469 1.293526 -0.6709762 0.7267052 1
22470 1.293526 -0.6709762 0.7267052 3
22471 1.293526 -0.6709762 0.7267052 3
22472 1.293526 -0.6709762 0.7267052 2
22473 1.293526 -0.6709762 0.7267052 2
22474 1.293526 -0.6709762 0.7267052 3
22475 1.293526 -0.6709762 0.7267052 1
22476 1.293526 -0.6709762 0.7267052 3
22477 1.293526 -0.6709762 0.7267052 2
22478 1.293526 -0.6709762 0.7267052 2
22479 1.293526 -0.6709762 0.7267052 1
22480 1.293526 -0.6709762 0.7267052 1
22481 1.293526 -0.6709762 0.7267052 2
22482 1.293526 -0.6709762 0.7267052 3
22483 1.293526 -0.6709762 0.7267052 3
22484 1.293526 -0.6709762 0.7267052 1
22485 1.293526 -0.6709762 0.7267052 2
22486 1.293526 -0.6709762 0.7267052 1
22487 1.293526 -0.6709762 0.7267052 2
22488 1.293526 -0.6709762 0.7267052 3
22489 1.293526 -0.6709762 0.7267052 2
22490 1.293526 -0.6709762 0.7267052 3
22491 1.293526 -0.6709762 0.7267052 1
22492 1.293526 -0.6709762 0.7267052 2
22493 1.293526 -0.6709762 0.7267052 1
22494 1.293526 -0.6709762 0.7267052 2
22495 1.293526 -0.6709762 0.7267052 1
22496 1.293526 -0.6709762 0.7267052 1
22497 1.293526 -0.6709762 0.7267052 3
22498 1.293526 -0.6709762 0.7267052 2
22499 1.293526 -0.6709762 0.7267052 2
22500 1.293526 -0.6709762 0.7267052 1
22501 1.293526 -0.6709762 0.7267052 3
22502 1.293526 -0.6709762 0.7267052 3
22503 1.293526 -0.6709762 0.7267052 2
22504 1.293526 -0.6709762 0.7267052 1
22505 1.293526 -0.6709762 0.7267052 2
22506 1.293526 -0.6709762 0.7267052 2
22507 1.293526 -0.6709762 0.7267052 3
22508 1.293526 -0.6709762 0.7267052 2
22509 1.293526 -0.6709762 0.7267052 3
22510 1.293526 -0.6709762 0.7267052 1
22511 1.293526 -0.6709762 0.7267052 1
22512 1.293526 -0.6709762 0.7267052 2
22513 1.293526 -0.6709762 0.7267052 3
22514 1.293526 -0.6709762 0.7267052 1
22515 1.293526 -0.6709762 0.7267052 1
22516 1.293526 -0.6709762 0.7267052 3
22517 1.293526 -0.6709762 0.7267052 1
22518 1.293526 -0.6709762 0.7267052 1
22519 1.293526 -0.6709762 0.7267052 3
22520 1.293526 -0.6709762 0.7267052 2
22521 1.293526 -0.6709762 0.7267052 3
22522 1.293526 -0.6709762 0.7267052 3
22523 1.293526 -0.6709762 0.7267052 3
22524 1.293526 -0.6709762 0.7267052 1
22525 1.293526 -0.6709762 0.7267052 2
22526 1.293526 -0.6709762 0.7267052 1
22527 1.293526 -0.6709762 0.7267052 1
22528 1.293526 -0.6709762 0.7267052 3
22529 1.293526 -0.6709762 0.7267052 3
22530 1.293526 -0.6709762 0.7267052 1
22531 1.293526 -0.6709762 0.7267052 2
22532 1.293526 -0.6709762 0.7267052 2
22533 1.293526 -0.6709762 0.7267052 3
22534 1.293526 -0.6709762 0.7267052 1
22535 1.293526 -0.6709762 0.7267052 3
22536 1.293526 -0.6709762 0.7267052 3
22537 1.293526 -0.6709762 0.7267052 1
22538 1.293526 -0.6709762 0.7267052 1
22539 1.293526 -0.6709762 0.7267052 3
22540 1.293526 -0.6709762 0.7267052 2
22541 1.293526 -0.6709762 0.7267052 2
22542 1.293526 -0.6709762 0.7267052 1
22543 1.293526 -0.6709762 0.7267052 1
22544 1.293526 -0.6709762 0.7267052 1
22545 1.293526 -0.6709762 0.7267052 1
22546 1.293526 -0.6709762 0.7267052 3
22547 1.293526 -0.6709762 0.7267052 1
22548 1.293526 -0.6709762 0.7267052 3
22549 1.293526 -0.6709762 0.7267052 1
22550 1.293526 -0.6709762 0.7267052 2
22551 1.293526 -0.6709762 0.7267052 2
22552 1.293526 -0.6709762 0.7267052 2
22553 1.293526 -0.6709762 0.7267052 2
22554 1.293526 -0.6709762 0.7267052 2
22555 1.293526 -0.6709762 0.7267052 3
22556 1.293526 -0.6709762 0.7267052 2
22557 1.293526 -0.6709762 0.7267052 3
22558 1.293526 -0.6709762 0.7267052 1
22559 1.293526 -0.6709762 0.7267052 1
22560 1.293526 -0.6709762 0.7267052 2
22561 1.293526 -0.6709762 0.7267052 3
22562 1.293526 -0.6709762 0.7267052 3
22563 1.293526 -0.6709762 0.7267052 1
22564 1.293526 -0.6709762 0.7267052 1
22565 1.293526 -0.6709762 0.7267052 1
22566 1.293526 -0.6709762 0.7267052 2
22567 1.293526 -0.6709762 0.7267052 2
22568 1.293526 -0.6709762 0.7267052 1
22569 1.293526 -0.6709762 0.7267052 3
22570 1.293526 -0.6709762 0.7267052 1
22571 1.293526 -0.6709762 0.7267052 3
22572 1.293526 -0.6709762 0.7267052 2
22573 1.293526 -0.6709762 0.7267052 3
22574 1.293526 -0.6709762 0.7267052 3
22575 1.293526 -0.6709762 0.7267052 2
22576 1.293526 -0.6709762 0.7267052 1
22577 1.293526 -0.6709762 0.7267052 1
22578 1.293526 -0.6709762 0.7267052 3
22579 1.293526 -0.6709762 0.7267052 2
22580 1.293526 -0.6709762 0.7267052 1
22581 1.293526 -0.6709762 0.7267052 2
22582 1.293526 -0.6709762 0.7267052 1
22583 1.293526 -0.6709762 0.7267052 2
22584 1.293526 -0.6709762 0.7267052 2
22585 1.293526 -0.6709762 0.7267052 2
22586 1.293526 -0.6709762 0.7267052 1
22587 1.293526 -0.6709762 0.7267052 3
22588 1.293526 -0.6709762 0.7267052 1
22589 1.293526 -0.6709762 0.7267052 3
22590 1.293526 -0.6709762 0.7267052 2
22591 1.293526 -0.6709762 0.7267052 3
22592 1.293526 -0.6709762 0.7267052 3
22593 1.293526 -0.6709762 0.7267052 3
22594 1.293526 -0.6709762 0.7267052 2
22595 1.293526 -0.6709762 0.7267052 1
22596 1.293526 -0.6709762 0.7267052 3
22597 1.293526 -0.6709762 0.7267052 3
22598 1.293526 -0.6709762 0.7267052 2
22599 1.293526 -0.6709762 0.7267052 3
22600 1.293526 -0.6709762 0.7267052 2
22601 1.293526 -0.6709762 0.7267052 3
22602 1.293526 -0.6709762 0.7267052 2
22603 1.293526 -0.6709762 0.7267052 3
22604 1.293526 -0.6709762 0.7267052 1
22605 1.293526 -0.6709762 0.7267052 3
22606 1.293526 -0.6709762 0.7267052 2
22607 1.293526 -0.6709762 0.7267052 3
22608 1.293526 -0.6709762 0.7267052 3
22609 1.293526 -0.6709762 0.7267052 1
22610 1.293526 -0.6709762 0.7267052 1
22611 1.293526 -0.6709762 0.7267052 2
22612 1.293526 -0.6709762 0.7267052 1
22613 1.293526 -0.6709762 0.7267052 3
22614 1.293526 -0.6709762 0.7267052 3
22615 1.293526 -0.6709762 0.7267052 2
22616 1.293526 -0.6709762 0.7267052 3
22617 1.293526 -0.6709762 0.7267052 1
22618 1.293526 -0.6709762 0.7267052 1
22619 1.293526 -0.6709762 0.7267052 2
22620 1.293526 -0.6709762 0.7267052 3
22621 1.293526 -0.6709762 0.7267052 1
22622 1.293526 -0.6709762 0.7267052 1
22623 1.293526 -0.6709762 0.7267052 3
22624 1.293526 -0.6709762 0.7267052 1
22625 1.293526 -0.6709762 0.7267052 2
22626 1.293526 -0.6709762 0.7267052 3
22627 1.293526 -0.6709762 0.7267052 3
22628 1.293526 -0.6709762 0.7267052 3
22629 1.293526 -0.6709762 0.7267052 1
22630 1.293526 -0.6709762 0.7267052 1
22631 1.293526 -0.6709762 0.7267052 2
22632 1.293526 -0.6709762 0.7267052 3
22633 1.293526 -0.6709762 0.7267052 2
22634 1.293526 -0.6709762 0.7267052 1
22635 1.293526 -0.6709762 0.7267052 2
22636 1.293526 -0.6709762 0.7267052 3
22637 1.293526 -0.6709762 0.7267052 3
22638 1.293526 -0.6709762 0.7267052 1
22639 1.293526 -0.6709762 0.7267052 2
22640 1.293526 -0.6709762 0.7267052 1
22641 1.293526 -0.6709762 0.7267052 3
22642 1.293526 -0.6709762 0.7267052 1
22643 1.293526 -0.6709762 0.7267052 1
22644 1.293526 -0.6709762 0.7267052 3
22645 1.293526 -0.6709762 0.7267052 2
22646 1.293526 -0.6709762 0.7267052 2
22647 1.293526 -0.6709762 0.7267052 2
22648 1.293526 -0.6709762 0.7267052 1
22649 1.293526 -0.6709762 0.7267052 2
22650 1.293526 -0.6709762 0.7267052 1
22651 1.293526 -0.6709762 0.7267052 1
22652 1.293526 -0.6709762 0.7267052 1
22653 1.293526 -0.6709762 0.7267052 3
22654 1.293526 -0.6709762 0.7267052 1
22655 1.293526 -0.6709762 0.7267052 3
22656 1.293526 -0.6709762 0.7267052 3
22657 1.293526 -0.6709762 0.7267052 2
22658 1.293526 -0.6709762 0.7267052 3
22659 1.293526 -0.6709762 0.7267052 2
22660 1.293526 -0.6709762 0.7267052 3
22661 1.293526 -0.6709762 0.7267052 2
22662 1.293526 -0.6709762 0.7267052 2
22663 1.293526 -0.6709762 0.7267052 2
22664 1.293526 -0.6709762 0.7267052 2
22665 1.293526 -0.6709762 0.7267052 1
22666 1.293526 -0.6709762 0.7267052 1
22667 1.293526 -0.6709762 0.7267052 1
22668 1.293526 -0.6709762 0.7267052 2
22669 1.293526 -0.6709762 0.7267052 1
22670 1.293526 -0.6709762 0.7267052 3
22671 1.293526 -0.6709762 0.7267052 3
22672 1.293526 -0.6709762 0.7267052 3
22673 1.293526 -0.6709762 0.7267052 2
22674 1.293526 -0.6709762 0.7267052 3
22675 1.293526 -0.6709762 0.7267052 3
22676 1.293526 -0.6709762 0.7267052 3
22677 1.293526 -0.6709762 0.7267052 3
22678 1.293526 -0.6709762 0.7267052 3
22679 1.293526 -0.6709762 0.7267052 1
22680 1.293526 -0.6709762 0.7267052 3
22681 1.293526 -0.6709762 0.7267052 3
22682 1.293526 -0.6709762 0.7267052 1
22683 1.293526 -0.6709762 0.7267052 1
22684 1.293526 -0.6709762 0.7267052 3
22685 1.293526 -0.6709762 0.7267052 2
22686 1.293526 -0.6709762 0.7267052 3
22687 1.293526 -0.6709762 0.7267052 1
22688 1.293526 -0.6709762 0.7267052 2
22689 1.293526 -0.6709762 0.7267052 1
22690 1.293526 -0.6709762 0.7267052 3
22691 1.293526 -0.6709762 0.7267052 3
22692 1.293526 -0.6709762 0.7267052 2
22693 1.293526 -0.6709762 0.7267052 1
22694 1.293526 -0.6709762 0.7267052 2
22695 1.293526 -0.6709762 0.7267052 1
22696 1.293526 -0.6709762 0.7267052 1
22697 1.293526 -0.6709762 0.7267052 3
22698 1.293526 -0.6709762 0.7267052 3
22699 1.293526 -0.6709762 0.7267052 2
22700 1.293526 -0.6709762 0.7267052 2
22701 1.293526 -0.6709762 0.7267052 1
22702 1.293526 -0.6709762 0.7267052 1
22703 1.293526 -0.6709762 0.7267052 2
22704 1.293526 -0.6709762 0.7267052 3
22705 1.293526 -0.6709762 0.7267052 1
22706 1.293526 -0.6709762 0.7267052 1
22707 1.293526 -0.6709762 0.7267052 3
22708 1.293526 -0.6709762 0.7267052 3
22709 1.293526 -0.6709762 0.7267052 1
22710 1.293526 -0.6709762 0.7267052 2
22711 1.293526 -0.6709762 0.7267052 1
22712 1.293526 -0.6709762 0.7267052 3
22713 1.293526 -0.6709762 0.7267052 1
22714 1.293526 -0.6709762 0.7267052 2
22715 1.293526 -0.6709762 0.7267052 3
22716 1.293526 -0.6709762 0.7267052 2
22717 1.293526 -0.6709762 0.7267052 1
22718 1.293526 -0.6709762 0.7267052 2
22719 1.293526 -0.6709762 0.7267052 2
22720 1.293526 -0.6709762 0.7267052 1
22721 1.293526 -0.6709762 0.7267052 1
22722 1.293526 -0.6709762 0.7267052 1
22723 1.293526 -0.6709762 0.7267052 1
22724 1.293526 -0.6709762 0.7267052 2
22725 1.293526 -0.6709762 0.7267052 3
22726 1.293526 -0.6709762 0.7267052 3
22727 1.293526 -0.6709762 0.7267052 3
22728 1.293526 -0.6709762 0.7267052 2
22729 1.293526 -0.6709762 0.7267052 2
22730 1.293526 -0.6709762 0.7267052 3
22731 1.293526 -0.6709762 0.7267052 2
22732 1.293526 -0.6709762 0.7267052 1
22733 1.293526 -0.6709762 0.7267052 1
22734 1.293526 -0.6709762 0.7267052 3
22735 1.293526 -0.6709762 0.7267052 1
22736 1.293526 -0.6709762 0.7267052 1
22737 1.293526 -0.6709762 0.7267052 2
22738 1.293526 -0.6709762 0.7267052 2
22739 1.293526 -0.6709762 0.7267052 1
22740 1.293526 -0.6709762 0.7267052 3
22741 1.293526 -0.6709762 0.7267052 2
22742 1.293526 -0.6709762 0.7267052 3
22743 1.293526 -0.6709762 0.7267052 3
22744 1.293526 -0.6709762 0.7267052 3
22745 1.293526 -0.6709762 0.7267052 3
22746 1.293526 -0.6709762 0.7267052 3
22747 1.293526 -0.6709762 0.7267052 3
22748 1.293526 -0.6709762 0.7267052 2
22749 1.293526 -0.6709762 0.7267052 1
22750 1.293526 -0.6709762 0.7267052 1
22751 1.293526 -0.6709762 0.7267052 2
22752 1.293526 -0.6709762 0.7267052 2
22753 1.293526 -0.6709762 0.7267052 3
22754 1.293526 -0.6709762 0.7267052 3
22755 1.293526 -0.6709762 0.7267052 1
22756 1.293526 -0.6709762 0.7267052 2
22757 1.293526 -0.6709762 0.7267052 1
22758 1.293526 -0.6709762 0.7267052 3
22759 1.293526 -0.6709762 0.7267052 3
22760 1.293526 -0.6709762 0.7267052 1
22761 1.293526 -0.6709762 0.7267052 2
22762 1.293526 -0.6709762 0.7267052 3
22763 1.293526 -0.6709762 0.7267052 3
22764 1.293526 -0.6709762 0.7267052 1
22765 1.293526 -0.6709762 0.7267052 2
22766 1.293526 -0.6709762 0.7267052 2
22767 1.293526 -0.6709762 0.7267052 1
22768 1.293526 -0.6709762 0.7267052 2
22769 1.293526 -0.6709762 0.7267052 1
22770 1.293526 -0.6709762 0.7267052 1
22771 1.293526 -0.6709762 0.7267052 1
22772 1.293526 -0.6709762 0.7267052 1
22773 1.293526 -0.6709762 0.7267052 2
22774 1.293526 -0.6709762 0.7267052 2
22775 1.293526 -0.6709762 0.7267052 2
22776 1.293526 -0.6709762 0.7267052 2
22777 1.293526 -0.6709762 0.7267052 3
22778 1.293526 -0.6709762 0.7267052 1
22779 1.293526 -0.6709762 0.7267052 1
22780 1.293526 -0.6709762 0.7267052 2
22781 1.293526 -0.6709762 0.7267052 1
22782 1.293526 -0.6709762 0.7267052 2
22783 1.293526 -0.6709762 0.7267052 2
22784 1.293526 -0.6709762 0.7267052 1
22785 1.293526 -0.6709762 0.7267052 3
22786 1.293526 -0.6709762 0.7267052 2
22787 1.293526 -0.6709762 0.7267052 1
22788 1.293526 -0.6709762 0.7267052 2
22789 1.293526 -0.6709762 0.7267052 3
22790 1.293526 -0.6709762 0.7267052 2
22791 1.293526 -0.6709762 0.7267052 3
22792 1.293526 -0.6709762 0.7267052 1
22793 1.293526 -0.6709762 0.7267052 3
22794 1.293526 -0.6709762 0.7267052 3
22795 1.293526 -0.6709762 0.7267052 1
22796 1.293526 -0.6709762 0.7267052 1
22797 1.293526 -0.6709762 0.7267052 1
22798 1.293526 -0.6709762 0.7267052 2
22799 1.293526 -0.6709762 0.7267052 1
22800 1.293526 -0.6709762 0.7267052 3
22801 1.293526 -0.6709762 0.7267052 2
22802 1.293526 -0.6709762 0.7267052 2
22803 1.293526 -0.6709762 0.7267052 3
22804 1.293526 -0.6709762 0.7267052 1
22805 1.293526 -0.6709762 0.7267052 2
22806 1.293526 -0.6709762 0.7267052 1
22807 1.293526 -0.6709762 0.7267052 1
22808 1.293526 -0.6709762 0.7267052 1
22809 1.293526 -0.6709762 0.7267052 2
22810 1.293526 -0.6709762 0.7267052 2
22811 1.293526 -0.6709762 0.7267052 1
22812 1.293526 -0.6709762 0.7267052 1
22813 1.293526 -0.6709762 0.7267052 2
22814 1.293526 -0.6709762 0.7267052 2
22815 1.293526 -0.6709762 0.7267052 3
22816 1.293526 -0.6709762 0.7267052 3
22817 1.293526 -0.6709762 0.7267052 3
22818 1.293526 -0.6709762 0.7267052 3
22819 1.293526 -0.6709762 0.7267052 1
22820 1.293526 -0.6709762 0.7267052 2
22821 1.293526 -0.6709762 0.7267052 1
22822 1.293526 -0.6709762 0.7267052 2
22823 1.293526 -0.6709762 0.7267052 2
22824 1.293526 -0.6709762 0.7267052 2
22825 1.293526 -0.6709762 0.7267052 3
22826 1.293526 -0.6709762 0.7267052 2
22827 1.293526 -0.6709762 0.7267052 1
22828 1.293526 -0.6709762 0.7267052 1
22829 1.293526 -0.6709762 0.7267052 3
22830 1.293526 -0.6709762 0.7267052 3
22831 1.293526 -0.6709762 0.7267052 2
22832 1.293526 -0.6709762 0.7267052 1
22833 1.293526 -0.6709762 0.7267052 3
22834 1.293526 -0.6709762 0.7267052 3
22835 1.293526 -0.6709762 0.7267052 3
22836 1.293526 -0.6709762 0.7267052 2
22837 1.293526 -0.6709762 0.7267052 3
22838 1.293526 -0.6709762 0.7267052 2
22839 1.293526 -0.6709762 0.7267052 2
22840 1.293526 -0.6709762 0.7267052 3
22841 1.293526 -0.6709762 0.7267052 1
22842 1.293526 -0.6709762 0.7267052 2
22843 1.293526 -0.6709762 0.7267052 2
22844 1.293526 -0.6709762 0.7267052 1
22845 1.293526 -0.6709762 0.7267052 1
22846 1.293526 -0.6709762 0.7267052 3
22847 1.293526 -0.6709762 0.7267052 2
22848 1.293526 -0.6709762 0.7267052 2
22849 1.293526 -0.6709762 0.7267052 1
22850 1.293526 -0.6709762 0.7267052 3
22851 1.293526 -0.6709762 0.7267052 3
22852 1.293526 -0.6709762 0.7267052 2
22853 1.293526 -0.6709762 0.7267052 1
22854 1.293526 -0.6709762 0.7267052 3
22855 1.293526 -0.6709762 0.7267052 2
22856 1.293526 -0.6709762 0.7267052 1
22857 1.293526 -0.6709762 0.7267052 1
22858 1.293526 -0.6709762 0.7267052 2
22859 1.293526 -0.6709762 0.7267052 2
22860 1.293526 -0.6709762 0.7267052 3
22861 1.293526 -0.6709762 0.7267052 3
22862 1.293526 -0.6709762 0.7267052 2
22863 1.293526 -0.6709762 0.7267052 1
22864 1.293526 -0.6709762 0.7267052 1
22865 1.293526 -0.6709762 0.7267052 1
22866 1.293526 -0.6709762 0.7267052 1
22867 1.293526 -0.6709762 0.7267052 3
22868 1.293526 -0.6709762 0.7267052 1
22869 1.293526 -0.6709762 0.7267052 3
22870 1.293526 -0.6709762 0.7267052 2
22871 1.293526 -0.6709762 0.7267052 2
22872 1.293526 -0.6709762 0.7267052 2
22873 1.293526 -0.6709762 0.7267052 1
22874 1.293526 -0.6709762 0.7267052 3
22875 1.293526 -0.6709762 0.7267052 1
22876 1.293526 -0.6709762 0.7267052 2
22877 1.293526 -0.6709762 0.7267052 1
22878 1.293526 -0.6709762 0.7267052 2
22879 1.293526 -0.6709762 0.7267052 2
22880 1.293526 -0.6709762 0.7267052 3
22881 1.293526 -0.6709762 0.7267052 3
22882 1.293526 -0.6709762 0.7267052 2
22883 1.293526 -0.6709762 0.7267052 3
22884 1.293526 -0.6709762 0.7267052 1
22885 1.293526 -0.6709762 0.7267052 1
22886 1.293526 -0.6709762 0.7267052 3
22887 1.293526 -0.6709762 0.7267052 3
22888 1.293526 -0.6709762 0.7267052 2
22889 1.293526 -0.6709762 0.7267052 1
22890 1.293526 -0.6709762 0.7267052 1
22891 1.293526 -0.6709762 0.7267052 2
22892 1.293526 -0.6709762 0.7267052 3
22893 1.293526 -0.6709762 0.7267052 1
22894 1.293526 -0.6709762 0.7267052 2
22895 1.293526 -0.6709762 0.7267052 1
22896 1.293526 -0.6709762 0.7267052 1
22897 1.293526 -0.6709762 0.7267052 3
22898 1.293526 -0.6709762 0.7267052 3
22899 1.293526 -0.6709762 0.7267052 3
22900 1.293526 -0.6709762 0.7267052 1
22901 1.293526 -0.6709762 0.7267052 1
22902 1.293526 -0.6709762 0.7267052 3
22903 1.293526 -0.6709762 0.7267052 2
22904 1.293526 -0.6709762 0.7267052 1
22905 1.293526 -0.6709762 0.7267052 2
22906 1.293526 -0.6709762 0.7267052 3
22907 1.293526 -0.6709762 0.7267052 2
22908 1.293526 -0.6709762 0.7267052 2
22909 1.293526 -0.6709762 0.7267052 1
22910 1.293526 -0.6709762 0.7267052 2
22911 1.293526 -0.6709762 0.7267052 1
22912 1.293526 -0.6709762 0.7267052 2
22913 1.293526 -0.6709762 0.7267052 1
22914 1.293526 -0.6709762 0.7267052 3
22915 1.293526 -0.6709762 0.7267052 1
22916 1.293526 -0.6709762 0.7267052 1
22917 1.293526 -0.6709762 0.7267052 1
22918 1.293526 -0.6709762 0.7267052 1
22919 1.293526 -0.6709762 0.7267052 3
22920 1.293526 -0.6709762 0.7267052 1
22921 1.293526 -0.6709762 0.7267052 3
22922 1.293526 -0.6709762 0.7267052 3
22923 1.293526 -0.6709762 0.7267052 1
22924 1.293526 -0.6709762 0.7267052 3
22925 1.293526 -0.6709762 0.7267052 3
22926 1.293526 -0.6709762 0.7267052 1
22927 1.293526 -0.6709762 0.7267052 1
22928 1.293526 -0.6709762 0.7267052 2
22929 1.293526 -0.6709762 0.7267052 2
22930 1.293526 -0.6709762 0.7267052 1
22931 1.293526 -0.6709762 0.7267052 3
22932 1.293526 -0.6709762 0.7267052 2
22933 1.293526 -0.6709762 0.7267052 2
22934 1.293526 -0.6709762 0.7267052 1
22935 1.293526 -0.6709762 0.7267052 2
22936 1.293526 -0.6709762 0.7267052 1
22937 1.293526 -0.6709762 0.7267052 2
22938 1.293526 -0.6709762 0.7267052 3
22939 1.293526 -0.6709762 0.7267052 1
22940 1.293526 -0.6709762 0.7267052 1
22941 1.293526 -0.6709762 0.7267052 1
22942 1.293526 -0.6709762 0.7267052 2
22943 1.293526 -0.6709762 0.7267052 3
22944 1.293526 -0.6709762 0.7267052 2
22945 1.293526 -0.6709762 0.7267052 3
22946 1.293526 -0.6709762 0.7267052 1
22947 1.293526 -0.6709762 0.7267052 1
22948 1.293526 -0.6709762 0.7267052 2
22949 1.293526 -0.6709762 0.7267052 3
22950 1.293526 -0.6709762 0.7267052 2
22951 1.293526 -0.6709762 0.7267052 1
22952 1.293526 -0.6709762 0.7267052 1
22953 1.293526 -0.6709762 0.7267052 2
22954 1.293526 -0.6709762 0.7267052 3
22955 1.293526 -0.6709762 0.7267052 2
22956 1.293526 -0.6709762 0.7267052 3
22957 1.293526 -0.6709762 0.7267052 3
22958 1.293526 -0.6709762 0.7267052 1
22959 1.293526 -0.6709762 0.7267052 3
22960 1.293526 -0.6709762 0.7267052 2
22961 1.293526 -0.6709762 0.7267052 1
22962 1.293526 -0.6709762 0.7267052 3
22963 1.293526 -0.6709762 0.7267052 1
22964 1.293526 -0.6709762 0.7267052 3
22965 1.293526 -0.6709762 0.7267052 1
22966 1.293526 -0.6709762 0.7267052 3
22967 1.293526 -0.6709762 0.7267052 1
22968 1.293526 -0.6709762 0.7267052 3
22969 1.293526 -0.6709762 0.7267052 3
22970 1.293526 -0.6709762 0.7267052 3
22971 1.293526 -0.6709762 0.7267052 1
22972 1.293526 -0.6709762 0.7267052 3
22973 1.293526 -0.6709762 0.7267052 2
22974 1.293526 -0.6709762 0.7267052 1
22975 1.293526 -0.6709762 0.7267052 2
22976 1.296043 -0.6724793 0.7218124 3
22977 1.296043 -0.6724793 0.7218124 2
22978 1.296043 -0.6724793 0.7218124 2
22979 1.296043 -0.6724793 0.7218124 2
22980 1.296043 -0.6724793 0.7218124 2
22981 1.296043 -0.6724793 0.7218124 1
22982 1.296043 -0.6724793 0.7218124 3
22983 1.296043 -0.6724793 0.7218124 1
22984 1.296043 -0.6724793 0.7218124 3
22985 1.296043 -0.6724793 0.7218124 2
22986 1.296043 -0.6724793 0.7218124 2
22987 1.296043 -0.6724793 0.7218124 1
22988 1.296043 -0.6724793 0.7218124 2
22989 1.296043 -0.6724793 0.7218124 3
22990 1.296043 -0.6724793 0.7218124 3
22991 1.296043 -0.6724793 0.7218124 2
22992 1.296043 -0.6724793 0.7218124 1
22993 1.296043 -0.6724793 0.7218124 1
22994 1.296043 -0.6724793 0.7218124 2
22995 1.296043 -0.6724793 0.7218124 2
22996 1.296043 -0.6724793 0.7218124 1
22997 1.296043 -0.6724793 0.7218124 3
22998 1.296043 -0.6724793 0.7218124 2
22999 1.296043 -0.6724793 0.7218124 2
23000 1.296043 -0.6724793 0.7218124 3
23001 1.296043 -0.6724793 0.7218124 2
23002 1.296043 -0.6724793 0.7218124 2
23003 1.296043 -0.6724793 0.7218124 2
23004 1.296043 -0.6724793 0.7218124 3
23005 1.296043 -0.6724793 0.7218124 1
23006 1.296043 -0.6724793 0.7218124 1
23007 1.296043 -0.6724793 0.7218124 1
23008 1.296043 -0.6724793 0.7218124 2
23009 1.296043 -0.6724793 0.7218124 3
23010 1.296043 -0.6724793 0.7218124 2
23011 1.296043 -0.6724793 0.7218124 1
23012 1.296043 -0.6724793 0.7218124 3
23013 1.296043 -0.6724793 0.7218124 1
23014 1.296043 -0.6724793 0.7218124 3
23015 1.296043 -0.6724793 0.7218124 3
23016 1.296043 -0.6724793 0.7218124 2
23017 1.296043 -0.6724793 0.7218124 1
23018 1.296043 -0.6724793 0.7218124 1
23019 1.296043 -0.6724793 0.7218124 2
23020 1.296043 -0.6724793 0.7218124 3
23021 1.296043 -0.6724793 0.7218124 2
23022 1.296043 -0.6724793 0.7218124 1
23023 1.296043 -0.6724793 0.7218124 3
23024 1.296043 -0.6724793 0.7218124 2
23025 1.296043 -0.6724793 0.7218124 3
23026 1.296043 -0.6724793 0.7218124 3
23027 1.296043 -0.6724793 0.7218124 3
23028 1.296043 -0.6724793 0.7218124 2
23029 1.296043 -0.6724793 0.7218124 3
23030 1.296043 -0.6724793 0.7218124 1
23031 1.296043 -0.6724793 0.7218124 3
23032 1.296043 -0.6724793 0.7218124 1
23033 1.296043 -0.6724793 0.7218124 3
23034 1.296043 -0.6724793 0.7218124 2
23035 1.296043 -0.6724793 0.7218124 2
23036 1.296043 -0.6724793 0.7218124 3
23037 1.296043 -0.6724793 0.7218124 1
23038 1.296043 -0.6724793 0.7218124 2
23039 1.296043 -0.6724793 0.7218124 2
23040 1.296043 -0.6724793 0.7218124 2
23041 1.296043 -0.6724793 0.7218124 2
23042 1.296043 -0.6724793 0.7218124 1
23043 1.296043 -0.6724793 0.7218124 1
23044 1.296043 -0.6724793 0.7218124 2
23045 1.296043 -0.6724793 0.7218124 3
23046 1.296043 -0.6724793 0.7218124 2
23047 1.296043 -0.6724793 0.7218124 3
23048 1.296043 -0.6724793 0.7218124 1
23049 1.296043 -0.6724793 0.7218124 2
23050 1.296043 -0.6724793 0.7218124 2
23051 1.296043 -0.6724793 0.7218124 1
23052 1.296043 -0.6724793 0.7218124 3
23053 1.296043 -0.6724793 0.7218124 1
23054 1.296043 -0.6724793 0.7218124 1
23055 1.296043 -0.6724793 0.7218124 3
23056 1.296043 -0.6724793 0.7218124 3
23057 1.296043 -0.6724793 0.7218124 3
23058 1.296043 -0.6724793 0.7218124 3
23059 1.296043 -0.6724793 0.7218124 2
23060 1.296043 -0.6724793 0.7218124 2
23061 1.296043 -0.6724793 0.7218124 3
23062 1.296043 -0.6724793 0.7218124 1
23063 1.296043 -0.6724793 0.7218124 2
23064 1.296043 -0.6724793 0.7218124 1
23065 1.296043 -0.6724793 0.7218124 3
23066 1.296043 -0.6724793 0.7218124 2
23067 1.296043 -0.6724793 0.7218124 1
23068 1.296043 -0.6724793 0.7218124 1
23069 1.296043 -0.6724793 0.7218124 2
23070 1.296043 -0.6724793 0.7218124 1
23071 1.296043 -0.6724793 0.7218124 3
23072 1.296043 -0.6724793 0.7218124 3
23073 1.296043 -0.6724793 0.7218124 1
23074 1.296043 -0.6724793 0.7218124 2
23075 1.296043 -0.6724793 0.7218124 3
23076 1.296043 -0.6724793 0.7218124 1
23077 1.296043 -0.6724793 0.7218124 2
23078 1.296043 -0.6724793 0.7218124 1
23079 1.296043 -0.6724793 0.7218124 3
23080 1.296043 -0.6724793 0.7218124 2
23081 1.296043 -0.6724793 0.7218124 3
23082 1.296043 -0.6724793 0.7218124 1
23083 1.296043 -0.6724793 0.7218124 1
23084 1.296043 -0.6724793 0.7218124 1
23085 1.296043 -0.6724793 0.7218124 2
23086 1.296043 -0.6724793 0.7218124 3
23087 1.296043 -0.6724793 0.7218124 2
23088 1.296043 -0.6724793 0.7218124 2
23089 1.296043 -0.6724793 0.7218124 2
23090 1.296043 -0.6724793 0.7218124 1
23091 1.296043 -0.6724793 0.7218124 2
23092 1.296043 -0.6724793 0.7218124 1
23093 1.296043 -0.6724793 0.7218124 2
23094 1.296043 -0.6724793 0.7218124 3
23095 1.296043 -0.6724793 0.7218124 3
23096 1.296043 -0.6724793 0.7218124 1
23097 1.296043 -0.6724793 0.7218124 1
23098 1.296043 -0.6724793 0.7218124 1
23099 1.296043 -0.6724793 0.7218124 3
23100 1.296043 -0.6724793 0.7218124 3
23101 1.296043 -0.6724793 0.7218124 1
23102 1.296043 -0.6724793 0.7218124 2
23103 1.296043 -0.6724793 0.7218124 3
23104 1.296043 -0.6724793 0.7218124 1
23105 1.296043 -0.6724793 0.7218124 2
23106 1.296043 -0.6724793 0.7218124 1
23107 1.296043 -0.6724793 0.7218124 2
23108 1.296043 -0.6724793 0.7218124 1
23109 1.296043 -0.6724793 0.7218124 2
23110 1.296043 -0.6724793 0.7218124 3
23111 1.296043 -0.6724793 0.7218124 2
23112 1.296043 -0.6724793 0.7218124 1
23113 1.296043 -0.6724793 0.7218124 3
23114 1.296043 -0.6724793 0.7218124 3
23115 1.296043 -0.6724793 0.7218124 2
23116 1.296043 -0.6724793 0.7218124 2
23117 1.296043 -0.6724793 0.7218124 1
23118 1.296043 -0.6724793 0.7218124 2
23119 1.296043 -0.6724793 0.7218124 1
23120 1.296043 -0.6724793 0.7218124 1
23121 1.296043 -0.6724793 0.7218124 2
23122 1.296043 -0.6724793 0.7218124 1
23123 1.296043 -0.6724793 0.7218124 2
23124 1.296043 -0.6724793 0.7218124 2
23125 1.296043 -0.6724793 0.7218124 2
23126 1.296043 -0.6724793 0.7218124 1
23127 1.296043 -0.6724793 0.7218124 2
23128 1.296043 -0.6724793 0.7218124 1
23129 1.296043 -0.6724793 0.7218124 1
23130 1.296043 -0.6724793 0.7218124 2
23131 1.296043 -0.6724793 0.7218124 2
23132 1.296043 -0.6724793 0.7218124 2
23133 1.296043 -0.6724793 0.7218124 2
23134 1.296043 -0.6724793 0.7218124 3
23135 1.296043 -0.6724793 0.7218124 2
23136 1.296043 -0.6724793 0.7218124 1
23137 1.296043 -0.6724793 0.7218124 2
23138 1.296043 -0.6724793 0.7218124 1
23139 1.296043 -0.6724793 0.7218124 3
23140 1.296043 -0.6724793 0.7218124 1
23141 1.296043 -0.6724793 0.7218124 2
23142 1.296043 -0.6724793 0.7218124 2
23143 1.296043 -0.6724793 0.7218124 1
23144 1.296043 -0.6724793 0.7218124 1
23145 1.296043 -0.6724793 0.7218124 3
23146 1.296043 -0.6724793 0.7218124 2
23147 1.296043 -0.6724793 0.7218124 3
23148 1.296043 -0.6724793 0.7218124 3
23149 1.296043 -0.6724793 0.7218124 3
23150 1.296043 -0.6724793 0.7218124 2
23151 1.296043 -0.6724793 0.7218124 2
23152 1.296043 -0.6724793 0.7218124 3
23153 1.296043 -0.6724793 0.7218124 2
23154 1.296043 -0.6724793 0.7218124 1
23155 1.296043 -0.6724793 0.7218124 1
23156 1.296043 -0.6724793 0.7218124 1
23157 1.296043 -0.6724793 0.7218124 1
23158 1.296043 -0.6724793 0.7218124 1
23159 1.296043 -0.6724793 0.7218124 2
23160 1.296043 -0.6724793 0.7218124 1
23161 1.296043 -0.6724793 0.7218124 1
23162 1.296043 -0.6724793 0.7218124 3
23163 1.296043 -0.6724793 0.7218124 2
23164 1.296043 -0.6724793 0.7218124 1
23165 1.296043 -0.6724793 0.7218124 3
23166 1.296043 -0.6724793 0.7218124 2
23167 1.296043 -0.6724793 0.7218124 2
23168 1.296043 -0.6724793 0.7218124 2
23169 1.296043 -0.6724793 0.7218124 2
23170 1.296043 -0.6724793 0.7218124 3
23171 1.296043 -0.6724793 0.7218124 1
23172 1.296043 -0.6724793 0.7218124 1
23173 1.296043 -0.6724793 0.7218124 2
23174 1.296043 -0.6724793 0.7218124 3
23175 1.296043 -0.6724793 0.7218124 3
23176 1.296043 -0.6724793 0.7218124 1
23177 1.296043 -0.6724793 0.7218124 1
23178 1.296043 -0.6724793 0.7218124 3
23179 1.296043 -0.6724793 0.7218124 1
23180 1.296043 -0.6724793 0.7218124 1
23181 1.296043 -0.6724793 0.7218124 2
23182 1.296043 -0.6724793 0.7218124 1
23183 1.296043 -0.6724793 0.7218124 3
23184 1.296043 -0.6724793 0.7218124 1
23185 1.296043 -0.6724793 0.7218124 3
23186 1.296043 -0.6724793 0.7218124 3
23187 1.296043 -0.6724793 0.7218124 2
23188 1.296043 -0.6724793 0.7218124 3
23189 1.296043 -0.6724793 0.7218124 1
23190 1.296043 -0.6724793 0.7218124 2
23191 1.296043 -0.6724793 0.7218124 3
23192 1.296043 -0.6724793 0.7218124 2
23193 1.296043 -0.6724793 0.7218124 1
23194 1.296043 -0.6724793 0.7218124 3
23195 1.296043 -0.6724793 0.7218124 1
23196 1.296043 -0.6724793 0.7218124 1
23197 1.296043 -0.6724793 0.7218124 2
23198 1.296043 -0.6724793 0.7218124 3
23199 1.296043 -0.6724793 0.7218124 1
23200 1.296043 -0.6724793 0.7218124 2
23201 1.296043 -0.6724793 0.7218124 2
23202 1.296043 -0.6724793 0.7218124 2
23203 1.296043 -0.6724793 0.7218124 3
23204 1.296043 -0.6724793 0.7218124 3
23205 1.296043 -0.6724793 0.7218124 3
23206 1.296043 -0.6724793 0.7218124 3
23207 1.296043 -0.6724793 0.7218124 1
23208 1.296043 -0.6724793 0.7218124 1
23209 1.296043 -0.6724793 0.7218124 1
23210 1.296043 -0.6724793 0.7218124 2
23211 1.296043 -0.6724793 0.7218124 2
23212 1.296043 -0.6724793 0.7218124 2
23213 1.296043 -0.6724793 0.7218124 3
23214 1.296043 -0.6724793 0.7218124 1
23215 1.296043 -0.6724793 0.7218124 2
23216 1.296043 -0.6724793 0.7218124 1
23217 1.296043 -0.6724793 0.7218124 2
23218 1.296043 -0.6724793 0.7218124 1
23219 1.296043 -0.6724793 0.7218124 3
23220 1.296043 -0.6724793 0.7218124 2
23221 1.296043 -0.6724793 0.7218124 3
23222 1.296043 -0.6724793 0.7218124 3
23223 1.296043 -0.6724793 0.7218124 3
23224 1.296043 -0.6724793 0.7218124 3
23225 1.296043 -0.6724793 0.7218124 3
23226 1.296043 -0.6724793 0.7218124 3
23227 1.296043 -0.6724793 0.7218124 3
23228 1.296043 -0.6724793 0.7218124 2
23229 1.296043 -0.6724793 0.7218124 3
23230 1.296043 -0.6724793 0.7218124 1
23231 1.296043 -0.6724793 0.7218124 3
23232 1.296043 -0.6724793 0.7218124 2
23233 1.296043 -0.6724793 0.7218124 3
23234 1.296043 -0.6724793 0.7218124 2
23235 1.296043 -0.6724793 0.7218124 3
23236 1.296043 -0.6724793 0.7218124 3
23237 1.296043 -0.6724793 0.7218124 3
23238 1.296043 -0.6724793 0.7218124 2
23239 1.296043 -0.6724793 0.7218124 2
23240 1.296043 -0.6724793 0.7218124 1
23241 1.296043 -0.6724793 0.7218124 2
23242 1.296043 -0.6724793 0.7218124 1
23243 1.296043 -0.6724793 0.7218124 1
23244 1.296043 -0.6724793 0.7218124 2
23245 1.296043 -0.6724793 0.7218124 3
23246 1.296043 -0.6724793 0.7218124 2
23247 1.296043 -0.6724793 0.7218124 2
23248 1.296043 -0.6724793 0.7218124 1
23249 1.296043 -0.6724793 0.7218124 1
23250 1.296043 -0.6724793 0.7218124 3
23251 1.296043 -0.6724793 0.7218124 1
23252 1.296043 -0.6724793 0.7218124 2
23253 1.296043 -0.6724793 0.7218124 3
23254 1.296043 -0.6724793 0.7218124 1
23255 1.296043 -0.6724793 0.7218124 3
23256 1.296043 -0.6724793 0.7218124 2
23257 1.296043 -0.6724793 0.7218124 2
23258 1.296043 -0.6724793 0.7218124 2
23259 1.296043 -0.6724793 0.7218124 3
23260 1.296043 -0.6724793 0.7218124 1
23261 1.296043 -0.6724793 0.7218124 2
23262 1.296043 -0.6724793 0.7218124 1
23263 1.296043 -0.6724793 0.7218124 2
23264 1.296043 -0.6724793 0.7218124 3
23265 1.296043 -0.6724793 0.7218124 2
23266 1.296043 -0.6724793 0.7218124 3
23267 1.296043 -0.6724793 0.7218124 2
23268 1.296043 -0.6724793 0.7218124 1
23269 1.296043 -0.6724793 0.7218124 3
23270 1.296043 -0.6724793 0.7218124 2
23271 1.296043 -0.6724793 0.7218124 2
23272 1.296043 -0.6724793 0.7218124 1
23273 1.296043 -0.6724793 0.7218124 1
23274 1.296043 -0.6724793 0.7218124 1
23275 1.296043 -0.6724793 0.7218124 1
23276 1.296043 -0.6724793 0.7218124 1
23277 1.296043 -0.6724793 0.7218124 2
23278 1.296043 -0.6724793 0.7218124 3
23279 1.296043 -0.6724793 0.7218124 3
23280 1.296043 -0.6724793 0.7218124 3
23281 1.296043 -0.6724793 0.7218124 3
23282 1.296043 -0.6724793 0.7218124 3
23283 1.296043 -0.6724793 0.7218124 2
23284 1.296043 -0.6724793 0.7218124 1
23285 1.296043 -0.6724793 0.7218124 2
23286 1.296043 -0.6724793 0.7218124 1
23287 1.296043 -0.6724793 0.7218124 2
23288 1.296043 -0.6724793 0.7218124 1
23289 1.296043 -0.6724793 0.7218124 3
23290 1.296043 -0.6724793 0.7218124 1
23291 1.296043 -0.6724793 0.7218124 3
23292 1.296043 -0.6724793 0.7218124 3
23293 1.296043 -0.6724793 0.7218124 3
23294 1.296043 -0.6724793 0.7218124 1
23295 1.296043 -0.6724793 0.7218124 3
23296 1.296043 -0.6724793 0.7218124 3
23297 1.296043 -0.6724793 0.7218124 3
23298 1.296043 -0.6724793 0.7218124 2
23299 1.296043 -0.6724793 0.7218124 3
23300 1.296043 -0.6724793 0.7218124 1
23301 1.296043 -0.6724793 0.7218124 1
23302 1.296043 -0.6724793 0.7218124 1
23303 1.296043 -0.6724793 0.7218124 1
23304 1.296043 -0.6724793 0.7218124 2
23305 1.296043 -0.6724793 0.7218124 3
23306 1.296043 -0.6724793 0.7218124 3
23307 1.296043 -0.6724793 0.7218124 1
23308 1.296043 -0.6724793 0.7218124 2
23309 1.296043 -0.6724793 0.7218124 1
23310 1.296043 -0.6724793 0.7218124 1
23311 1.296043 -0.6724793 0.7218124 3
23312 1.296043 -0.6724793 0.7218124 1
23313 1.296043 -0.6724793 0.7218124 1
23314 1.296043 -0.6724793 0.7218124 1
23315 1.296043 -0.6724793 0.7218124 3
23316 1.296043 -0.6724793 0.7218124 2
23317 1.296043 -0.6724793 0.7218124 2
23318 1.296043 -0.6724793 0.7218124 3
23319 1.296043 -0.6724793 0.7218124 3
23320 1.296043 -0.6724793 0.7218124 3
23321 1.296043 -0.6724793 0.7218124 1
23322 1.296043 -0.6724793 0.7218124 1
23323 1.296043 -0.6724793 0.7218124 2
23324 1.296043 -0.6724793 0.7218124 2
23325 1.296043 -0.6724793 0.7218124 2
23326 1.296043 -0.6724793 0.7218124 1
23327 1.296043 -0.6724793 0.7218124 1
23328 1.296043 -0.6724793 0.7218124 2
23329 1.296043 -0.6724793 0.7218124 2
23330 1.296043 -0.6724793 0.7218124 3
23331 1.296043 -0.6724793 0.7218124 3
23332 1.296043 -0.6724793 0.7218124 1
23333 1.296043 -0.6724793 0.7218124 3
23334 1.296043 -0.6724793 0.7218124 3
23335 1.296043 -0.6724793 0.7218124 2
23336 1.296043 -0.6724793 0.7218124 1
23337 1.296043 -0.6724793 0.7218124 2
23338 1.296043 -0.6724793 0.7218124 1
23339 1.296043 -0.6724793 0.7218124 2
23340 1.296043 -0.6724793 0.7218124 3
23341 1.296043 -0.6724793 0.7218124 1
23342 1.296043 -0.6724793 0.7218124 2
23343 1.296043 -0.6724793 0.7218124 2
23344 1.296043 -0.6724793 0.7218124 2
23345 1.296043 -0.6724793 0.7218124 2
23346 1.296043 -0.6724793 0.7218124 3
23347 1.296043 -0.6724793 0.7218124 2
23348 1.296043 -0.6724793 0.7218124 1
23349 1.296043 -0.6724793 0.7218124 1
23350 1.296043 -0.6724793 0.7218124 2
23351 1.296043 -0.6724793 0.7218124 1
23352 1.296043 -0.6724793 0.7218124 2
23353 1.296043 -0.6724793 0.7218124 2
23354 1.296043 -0.6724793 0.7218124 1
23355 1.296043 -0.6724793 0.7218124 2
23356 1.296043 -0.6724793 0.7218124 2
23357 1.296043 -0.6724793 0.7218124 3
23358 1.296043 -0.6724793 0.7218124 1
23359 1.296043 -0.6724793 0.7218124 3
23360 1.296043 -0.6724793 0.7218124 2
23361 1.296043 -0.6724793 0.7218124 1
23362 1.296043 -0.6724793 0.7218124 2
23363 1.296043 -0.6724793 0.7218124 2
23364 1.296043 -0.6724793 0.7218124 2
23365 1.296043 -0.6724793 0.7218124 2
23366 1.296043 -0.6724793 0.7218124 3
23367 1.296043 -0.6724793 0.7218124 2
23368 1.296043 -0.6724793 0.7218124 3
23369 1.296043 -0.6724793 0.7218124 1
23370 1.296043 -0.6724793 0.7218124 1
23371 1.296043 -0.6724793 0.7218124 2
23372 1.296043 -0.6724793 0.7218124 2
23373 1.296043 -0.6724793 0.7218124 3
23374 1.296043 -0.6724793 0.7218124 3
23375 1.296043 -0.6724793 0.7218124 2
23376 1.296043 -0.6724793 0.7218124 2
23377 1.296043 -0.6724793 0.7218124 3
23378 1.296043 -0.6724793 0.7218124 1
23379 1.296043 -0.6724793 0.7218124 2
23380 1.296043 -0.6724793 0.7218124 2
23381 1.296043 -0.6724793 0.7218124 1
23382 1.296043 -0.6724793 0.7218124 1
23383 1.296043 -0.6724793 0.7218124 1
23384 1.296043 -0.6724793 0.7218124 1
23385 1.296043 -0.6724793 0.7218124 2
23386 1.296043 -0.6724793 0.7218124 3
23387 1.296043 -0.6724793 0.7218124 2
23388 1.296043 -0.6724793 0.7218124 2
23389 1.296043 -0.6724793 0.7218124 3
23390 1.296043 -0.6724793 0.7218124 1
23391 1.296043 -0.6724793 0.7218124 2
23392 1.296043 -0.6724793 0.7218124 2
23393 1.296043 -0.6724793 0.7218124 1
23394 1.296043 -0.6724793 0.7218124 3
23395 1.296043 -0.6724793 0.7218124 3
23396 1.296043 -0.6724793 0.7218124 1
23397 1.296043 -0.6724793 0.7218124 2
23398 1.296043 -0.6724793 0.7218124 3
23399 1.296043 -0.6724793 0.7218124 2
23400 1.296043 -0.6724793 0.7218124 1
23401 1.296043 -0.6724793 0.7218124 1
23402 1.296043 -0.6724793 0.7218124 3
23403 1.296043 -0.6724793 0.7218124 1
23404 1.296043 -0.6724793 0.7218124 3
23405 1.296043 -0.6724793 0.7218124 3
23406 1.296043 -0.6724793 0.7218124 1
23407 1.296043 -0.6724793 0.7218124 1
23408 1.296043 -0.6724793 0.7218124 2
23409 1.296043 -0.6724793 0.7218124 3
23410 1.296043 -0.6724793 0.7218124 3
23411 1.296043 -0.6724793 0.7218124 1
23412 1.296043 -0.6724793 0.7218124 1
23413 1.296043 -0.6724793 0.7218124 3
23414 1.296043 -0.6724793 0.7218124 2
23415 1.296043 -0.6724793 0.7218124 1
23416 1.296043 -0.6724793 0.7218124 1
23417 1.296043 -0.6724793 0.7218124 2
23418 1.296043 -0.6724793 0.7218124 2
23419 1.296043 -0.6724793 0.7218124 2
23420 1.296043 -0.6724793 0.7218124 2
23421 1.296043 -0.6724793 0.7218124 1
23422 1.296043 -0.6724793 0.7218124 2
23423 1.296043 -0.6724793 0.7218124 3
23424 1.296043 -0.6724793 0.7218124 3
23425 1.296043 -0.6724793 0.7218124 1
23426 1.296043 -0.6724793 0.7218124 3
23427 1.296043 -0.6724793 0.7218124 3
23428 1.296043 -0.6724793 0.7218124 1
23429 1.296043 -0.6724793 0.7218124 2
23430 1.296043 -0.6724793 0.7218124 1
23431 1.296043 -0.6724793 0.7218124 2
23432 1.296043 -0.6724793 0.7218124 1
23433 1.296043 -0.6724793 0.7218124 3
23434 1.296043 -0.6724793 0.7218124 3
23435 1.296043 -0.6724793 0.7218124 3
23436 1.296043 -0.6724793 0.7218124 3
23437 1.296043 -0.6724793 0.7218124 3
23438 1.296043 -0.6724793 0.7218124 2
23439 1.296043 -0.6724793 0.7218124 2
23440 1.296043 -0.6724793 0.7218124 3
23441 1.296043 -0.6724793 0.7218124 2
23442 1.296043 -0.6724793 0.7218124 2
23443 1.296043 -0.6724793 0.7218124 1
23444 1.296043 -0.6724793 0.7218124 1
23445 1.296043 -0.6724793 0.7218124 3
23446 1.296043 -0.6724793 0.7218124 1
23447 1.296043 -0.6724793 0.7218124 2
23448 1.296043 -0.6724793 0.7218124 3
23449 1.296043 -0.6724793 0.7218124 3
23450 1.296043 -0.6724793 0.7218124 3
23451 1.296043 -0.6724793 0.7218124 2
23452 1.296043 -0.6724793 0.7218124 1
23453 1.296043 -0.6724793 0.7218124 1
23454 1.296043 -0.6724793 0.7218124 1
23455 1.296043 -0.6724793 0.7218124 2
23456 1.296043 -0.6724793 0.7218124 2
23457 1.296043 -0.6724793 0.7218124 3
23458 1.296043 -0.6724793 0.7218124 2
23459 1.296043 -0.6724793 0.7218124 2
23460 1.296043 -0.6724793 0.7218124 3
23461 1.296043 -0.6724793 0.7218124 3
23462 1.296043 -0.6724793 0.7218124 1
23463 1.296043 -0.6724793 0.7218124 1
23464 1.296043 -0.6724793 0.7218124 3
23465 1.296043 -0.6724793 0.7218124 3
23466 1.296043 -0.6724793 0.7218124 1
23467 1.296043 -0.6724793 0.7218124 1
23468 1.296043 -0.6724793 0.7218124 1
23469 1.296043 -0.6724793 0.7218124 3
23470 1.296043 -0.6724793 0.7218124 2
23471 1.296043 -0.6724793 0.7218124 3
23472 1.296043 -0.6724793 0.7218124 3
23473 1.296043 -0.6724793 0.7218124 3
23474 1.296043 -0.6724793 0.7218124 2
23475 1.296043 -0.6724793 0.7218124 3
23476 1.296043 -0.6724793 0.7218124 3
23477 1.296043 -0.6724793 0.7218124 2
23478 1.296043 -0.6724793 0.7218124 2
23479 1.296043 -0.6724793 0.7218124 1
23480 1.296043 -0.6724793 0.7218124 1
23481 1.296043 -0.6724793 0.7218124 1
23482 1.296043 -0.6724793 0.7218124 2
23483 1.296043 -0.6724793 0.7218124 2
23484 1.296043 -0.6724793 0.7218124 3
23485 1.296043 -0.6724793 0.7218124 3
23486 1.296043 -0.6724793 0.7218124 2
23487 1.296043 -0.6724793 0.7218124 3
23488 1.296043 -0.6724793 0.7218124 3
23489 1.296043 -0.6724793 0.7218124 3
23490 1.296043 -0.6724793 0.7218124 1
23491 1.296043 -0.6724793 0.7218124 3
23492 1.296043 -0.6724793 0.7218124 3
23493 1.296043 -0.6724793 0.7218124 3
23494 1.296043 -0.6724793 0.7218124 1
23495 1.296043 -0.6724793 0.7218124 1
23496 1.296043 -0.6724793 0.7218124 3
23497 1.296043 -0.6724793 0.7218124 1
23498 1.296043 -0.6724793 0.7218124 2
23499 1.296043 -0.6724793 0.7218124 3
23500 1.296043 -0.6724793 0.7218124 3
23501 1.296043 -0.6724793 0.7218124 1
23502 1.296043 -0.6724793 0.7218124 3
23503 1.296043 -0.6724793 0.7218124 2
23504 1.296043 -0.6724793 0.7218124 2
23505 1.296043 -0.6724793 0.7218124 1
23506 1.296043 -0.6724793 0.7218124 1
23507 1.296043 -0.6724793 0.7218124 3
23508 1.296043 -0.6724793 0.7218124 3
23509 1.296043 -0.6724793 0.7218124 2
23510 1.296043 -0.6724793 0.7218124 3
23511 1.296043 -0.6724793 0.7218124 1
23512 1.296043 -0.6724793 0.7218124 3
23513 1.296043 -0.6724793 0.7218124 1
23514 1.296043 -0.6724793 0.7218124 2
23515 1.296043 -0.6724793 0.7218124 2
23516 1.296043 -0.6724793 0.7218124 3
23517 1.296043 -0.6724793 0.7218124 3
23518 1.296043 -0.6724793 0.7218124 2
23519 1.296043 -0.6724793 0.7218124 2
23520 1.296043 -0.6724793 0.7218124 3
23521 1.296043 -0.6724793 0.7218124 1
23522 1.296043 -0.6724793 0.7218124 1
23523 1.296043 -0.6724793 0.7218124 2
23524 1.296043 -0.6724793 0.7218124 3
23525 1.296043 -0.6724793 0.7218124 3
23526 1.296043 -0.6724793 0.7218124 2
23527 1.296043 -0.6724793 0.7218124 3
23528 1.296043 -0.6724793 0.7218124 3
23529 1.296043 -0.6724793 0.7218124 2
23530 1.296043 -0.6724793 0.7218124 2
23531 1.296043 -0.6724793 0.7218124 1
23532 1.296043 -0.6724793 0.7218124 3
23533 1.296043 -0.6724793 0.7218124 3
23534 1.296043 -0.6724793 0.7218124 1
23535 1.296043 -0.6724793 0.7218124 3
23536 1.296043 -0.6724793 0.7218124 3
23537 1.296043 -0.6724793 0.7218124 2
23538 1.296043 -0.6724793 0.7218124 2
23539 1.296043 -0.6724793 0.7218124 3
23540 1.296043 -0.6724793 0.7218124 1
23541 1.296043 -0.6724793 0.7218124 1
23542 1.296043 -0.6724793 0.7218124 3
23543 1.296043 -0.6724793 0.7218124 3
23544 1.296043 -0.6724793 0.7218124 2
23545 1.296043 -0.6724793 0.7218124 3
23546 1.296043 -0.6724793 0.7218124 2
23547 1.296043 -0.6724793 0.7218124 1
23548 1.296043 -0.6724793 0.7218124 1
23549 1.296043 -0.6724793 0.7218124 1
23550 1.296043 -0.6724793 0.7218124 3
23551 1.296043 -0.6724793 0.7218124 3
23552 1.296043 -0.6724793 0.7218124 3
23553 1.296043 -0.6724793 0.7218124 3
23554 1.296043 -0.6724793 0.7218124 1
23555 1.296043 -0.6724793 0.7218124 3
23556 1.296043 -0.6724793 0.7218124 1
23557 1.296043 -0.6724793 0.7218124 2
23558 1.296043 -0.6724793 0.7218124 1
23559 1.296043 -0.6724793 0.7218124 2
23560 1.296043 -0.6724793 0.7218124 1
23561 1.296043 -0.6724793 0.7218124 1
23562 1.296043 -0.6724793 0.7218124 1
23563 1.296043 -0.6724793 0.7218124 1
23564 1.296043 -0.6724793 0.7218124 2
23565 1.296043 -0.6724793 0.7218124 2
23566 1.296043 -0.6724793 0.7218124 3
23567 1.296043 -0.6724793 0.7218124 3
23568 1.296043 -0.6724793 0.7218124 1
23569 1.296043 -0.6724793 0.7218124 3
23570 1.296043 -0.6724793 0.7218124 2
23571 1.296043 -0.6724793 0.7218124 2
23572 1.296043 -0.6724793 0.7218124 1
23573 1.296043 -0.6724793 0.7218124 3
23574 1.296043 -0.6724793 0.7218124 2
23575 1.296043 -0.6724793 0.7218124 2
23576 1.296043 -0.6724793 0.7218124 3
23577 1.296043 -0.6724793 0.7218124 3
23578 1.296043 -0.6724793 0.7218124 2
23579 1.296043 -0.6724793 0.7218124 3
23580 1.296043 -0.6724793 0.7218124 2
23581 1.296043 -0.6724793 0.7218124 3
23582 1.296043 -0.6724793 0.7218124 1
23583 1.296043 -0.6724793 0.7218124 1
23584 1.296043 -0.6724793 0.7218124 3
23585 1.296043 -0.6724793 0.7218124 3
23586 1.296043 -0.6724793 0.7218124 3
23587 1.296043 -0.6724793 0.7218124 2
23588 1.296043 -0.6724793 0.7218124 2
23589 1.296043 -0.6724793 0.7218124 1
23590 1.296043 -0.6724793 0.7218124 3
23591 1.296043 -0.6724793 0.7218124 2
23592 1.296043 -0.6724793 0.7218124 3
23593 1.296043 -0.6724793 0.7218124 3
23594 1.296043 -0.6724793 0.7218124 2
23595 1.296043 -0.6724793 0.7218124 2
23596 1.296043 -0.6724793 0.7218124 3
23597 1.296043 -0.6724793 0.7218124 3
23598 1.296043 -0.6724793 0.7218124 1
23599 1.296043 -0.6724793 0.7218124 1
23600 1.296043 -0.6724793 0.7218124 1
23601 1.296043 -0.6724793 0.7218124 3
23602 1.296043 -0.6724793 0.7218124 3
23603 1.296043 -0.6724793 0.7218124 3
23604 1.296043 -0.6724793 0.7218124 2
23605 1.296043 -0.6724793 0.7218124 3
23606 1.296043 -0.6724793 0.7218124 3
23607 1.296043 -0.6724793 0.7218124 1
23608 1.296043 -0.6724793 0.7218124 3
23609 1.296043 -0.6724793 0.7218124 2
23610 1.296043 -0.6724793 0.7218124 2
23611 1.296043 -0.6724793 0.7218124 1
23612 1.296043 -0.6724793 0.7218124 1
23613 1.296043 -0.6724793 0.7218124 1
23614 1.296043 -0.6724793 0.7218124 1
23615 1.296043 -0.6724793 0.7218124 3
23616 1.296043 -0.6724793 0.7218124 1
23617 1.296043 -0.6724793 0.7218124 1
23618 1.296043 -0.6724793 0.7218124 2
23619 1.296043 -0.6724793 0.7218124 3
23620 1.296043 -0.6724793 0.7218124 2
23621 1.296043 -0.6724793 0.7218124 2
23622 1.296043 -0.6724793 0.7218124 1
23623 1.296043 -0.6724793 0.7218124 3
23624 1.296043 -0.6724793 0.7218124 1
23625 1.296043 -0.6724793 0.7218124 1
23626 1.296043 -0.6724793 0.7218124 1
23627 1.296043 -0.6724793 0.7218124 2
23628 1.296043 -0.6724793 0.7218124 3
23629 1.296043 -0.6724793 0.7218124 2
23630 1.296043 -0.6724793 0.7218124 2
23631 1.296043 -0.6724793 0.7218124 3
23632 1.296043 -0.6724793 0.7218124 1
23633 1.296043 -0.6724793 0.7218124 2
23634 1.296043 -0.6724793 0.7218124 1
23635 1.296043 -0.6724793 0.7218124 3
23636 1.296043 -0.6724793 0.7218124 2
23637 1.296043 -0.6724793 0.7218124 3
23638 1.296043 -0.6724793 0.7218124 2
23639 1.296043 -0.6724793 0.7218124 2
23640 1.296043 -0.6724793 0.7218124 1
23641 1.296043 -0.6724793 0.7218124 2
23642 1.296043 -0.6724793 0.7218124 2
23643 1.296043 -0.6724793 0.7218124 3
23644 1.296043 -0.6724793 0.7218124 3
23645 1.296043 -0.6724793 0.7218124 2
23646 1.296043 -0.6724793 0.7218124 1
23647 1.296043 -0.6724793 0.7218124 1
23648 1.296043 -0.6724793 0.7218124 1
23649 1.296043 -0.6724793 0.7218124 3
23650 1.296043 -0.6724793 0.7218124 1
23651 1.296043 -0.6724793 0.7218124 2
23652 1.296043 -0.6724793 0.7218124 2
23653 1.296043 -0.6724793 0.7218124 3
23654 1.296043 -0.6724793 0.7218124 3
23655 1.296043 -0.6724793 0.7218124 2
23656 1.296043 -0.6724793 0.7218124 3
23657 1.296043 -0.6724793 0.7218124 3
23658 1.296043 -0.6724793 0.7218124 2
23659 1.296043 -0.6724793 0.7218124 2
23660 1.296043 -0.6724793 0.7218124 2
23661 1.296043 -0.6724793 0.7218124 1
23662 1.296043 -0.6724793 0.7218124 2
23663 1.296043 -0.6724793 0.7218124 1
23664 1.296043 -0.6724793 0.7218124 2
23665 1.296043 -0.6724793 0.7218124 1
23666 1.296043 -0.6724793 0.7218124 1
23667 1.296043 -0.6724793 0.7218124 2
23668 1.296043 -0.6724793 0.7218124 1
23669 1.296043 -0.6724793 0.7218124 1
23670 1.296043 -0.6724793 0.7218124 3
23671 1.296043 -0.6724793 0.7218124 3
23672 1.296043 -0.6724793 0.7218124 2
23673 1.296043 -0.6724793 0.7218124 1
23674 1.296043 -0.6724793 0.7218124 3
23675 1.296043 -0.6724793 0.7218124 3
23676 1.296043 -0.6724793 0.7218124 3
23677 1.296043 -0.6724793 0.7218124 1
23678 1.296043 -0.6724793 0.7218124 1
23679 1.296043 -0.6724793 0.7218124 3
23680 1.296043 -0.6724793 0.7218124 3
23681 1.296043 -0.6724793 0.7218124 3
23682 1.296043 -0.6724793 0.7218124 3
23683 1.296043 -0.6724793 0.7218124 1
23684 1.296043 -0.6724793 0.7218124 1
23685 1.296043 -0.6724793 0.7218124 2
23686 1.296043 -0.6724793 0.7218124 1
23687 1.296043 -0.6724793 0.7218124 3
23688 1.296043 -0.6724793 0.7218124 2
23689 1.296043 -0.6724793 0.7218124 1
23690 1.296043 -0.6724793 0.7218124 2
23691 1.296043 -0.6724793 0.7218124 3
23692 1.296043 -0.6724793 0.7218124 1
23693 1.296043 -0.6724793 0.7218124 2
23694 1.296043 -0.6724793 0.7218124 1
23695 1.296043 -0.6724793 0.7218124 1
23696 1.296043 -0.6724793 0.7218124 3
23697 1.296043 -0.6724793 0.7218124 1
23698 1.296043 -0.6724793 0.7218124 3
23699 1.296043 -0.6724793 0.7218124 3
23700 1.296043 -0.6724793 0.7218124 1
23701 1.296043 -0.6724793 0.7218124 1
23702 1.296043 -0.6724793 0.7218124 1
23703 1.296043 -0.6724793 0.7218124 3
23704 1.296043 -0.6724793 0.7218124 2
23705 1.296043 -0.6724793 0.7218124 1
23706 1.296043 -0.6724793 0.7218124 1
23707 1.296043 -0.6724793 0.7218124 3
23708 1.296043 -0.6724793 0.7218124 2
23709 1.296043 -0.6724793 0.7218124 1
23710 1.296043 -0.6724793 0.7218124 3
23711 1.296043 -0.6724793 0.7218124 1
23712 1.296043 -0.6724793 0.7218124 2
23713 1.296043 -0.6724793 0.7218124 1
23714 1.296043 -0.6724793 0.7218124 1
23715 1.296043 -0.6724793 0.7218124 3
23716 1.296043 -0.6724793 0.7218124 3
23717 1.296043 -0.6724793 0.7218124 1
23718 1.296043 -0.6724793 0.7218124 2
23719 1.296043 -0.6724793 0.7218124 3
23720 1.296043 -0.6724793 0.7218124 2
23721 1.296043 -0.6724793 0.7218124 2
23722 1.296043 -0.6724793 0.7218124 2
23723 1.296043 -0.6724793 0.7218124 3
23724 1.296043 -0.6724793 0.7218124 2
23725 1.296043 -0.6724793 0.7218124 1
23726 1.296043 -0.6724793 0.7218124 3
23727 1.296043 -0.6724793 0.7218124 1
23728 1.296043 -0.6724793 0.7218124 3
23729 1.296043 -0.6724793 0.7218124 3
23730 1.296043 -0.6724793 0.7218124 2
23731 1.296043 -0.6724793 0.7218124 3
23732 1.296043 -0.6724793 0.7218124 1
23733 1.296043 -0.6724793 0.7218124 2
23734 1.296043 -0.6724793 0.7218124 1
23735 1.296043 -0.6724793 0.7218124 3
23736 1.296043 -0.6724793 0.7218124 3
23737 1.296043 -0.6724793 0.7218124 2
23738 1.296043 -0.6724793 0.7218124 2
23739 1.296043 -0.6724793 0.7218124 3
23740 1.296043 -0.6724793 0.7218124 1
23741 1.296043 -0.6724793 0.7218124 3
23742 1.296043 -0.6724793 0.7218124 3
23743 1.296043 -0.6724793 0.7218124 2
23744 1.296043 -0.6724793 0.7218124 3
23745 1.296043 -0.6724793 0.7218124 2
23746 1.296043 -0.6724793 0.7218124 3
23747 1.296043 -0.6724793 0.7218124 1
23748 1.296043 -0.6724793 0.7218124 2
23749 1.296043 -0.6724793 0.7218124 1
23750 1.296043 -0.6724793 0.7218124 3
23751 1.296043 -0.6724793 0.7218124 2
23752 1.296043 -0.6724793 0.7218124 1
23753 1.296043 -0.6724793 0.7218124 1
23754 1.296043 -0.6724793 0.7218124 2
23755 1.296043 -0.6724793 0.7218124 3
23756 1.296043 -0.6724793 0.7218124 3
23757 1.296043 -0.6724793 0.7218124 3
23758 1.296043 -0.6724793 0.7218124 1
23759 1.296043 -0.6724793 0.7218124 3
23760 1.296043 -0.6724793 0.7218124 2
23761 1.296043 -0.6724793 0.7218124 2
23762 1.296043 -0.6724793 0.7218124 1
23763 1.296043 -0.6724793 0.7218124 3
23764 1.296043 -0.6724793 0.7218124 3
23765 1.296043 -0.6724793 0.7218124 1
23766 1.296043 -0.6724793 0.7218124 2
23767 1.296043 -0.6724793 0.7218124 1
23768 1.296043 -0.6724793 0.7218124 3
23769 1.296043 -0.6724793 0.7218124 1
23770 1.296043 -0.6724793 0.7218124 1
23771 1.296043 -0.6724793 0.7218124 1
23772 1.296043 -0.6724793 0.7218124 2
23773 1.296043 -0.6724793 0.7218124 1
23774 1.296043 -0.6724793 0.7218124 3
23775 1.296043 -0.6724793 0.7218124 1
23776 1.296043 -0.6724793 0.7218124 1
23777 1.296043 -0.6724793 0.7218124 3
23778 1.296043 -0.6724793 0.7218124 1
23779 1.296043 -0.6724793 0.7218124 3
23780 1.296043 -0.6724793 0.7218124 1
23781 1.296043 -0.6724793 0.7218124 1
23782 1.296043 -0.6724793 0.7218124 3
23783 1.296043 -0.6724793 0.7218124 2
23784 1.296043 -0.6724793 0.7218124 2
23785 1.296043 -0.6724793 0.7218124 2
23786 1.296043 -0.6724793 0.7218124 2
23787 1.296043 -0.6724793 0.7218124 3
23788 1.296043 -0.6724793 0.7218124 3
23789 1.296043 -0.6724793 0.7218124 1
23790 1.296043 -0.6724793 0.7218124 1
23791 1.296043 -0.6724793 0.7218124 1
23792 1.296043 -0.6724793 0.7218124 3
23793 1.296043 -0.6724793 0.7218124 2
23794 1.296043 -0.6724793 0.7218124 2
23795 1.296043 -0.6724793 0.7218124 1
23796 1.296043 -0.6724793 0.7218124 3
23797 1.296043 -0.6724793 0.7218124 1
23798 1.296043 -0.6724793 0.7218124 2
23799 1.296043 -0.6724793 0.7218124 3
23800 1.296043 -0.6724793 0.7218124 3
23801 1.296043 -0.6724793 0.7218124 1
23802 1.296043 -0.6724793 0.7218124 1
23803 1.296043 -0.6724793 0.7218124 3
23804 1.296043 -0.6724793 0.7218124 2
23805 1.296043 -0.6724793 0.7218124 3
23806 1.296043 -0.6724793 0.7218124 1
23807 1.296043 -0.6724793 0.7218124 2
23808 1.296043 -0.6724793 0.7218124 1
23809 1.296043 -0.6724793 0.7218124 2
23810 1.296043 -0.6724793 0.7218124 3
23811 1.296043 -0.6724793 0.7218124 1
23812 1.296043 -0.6724793 0.7218124 3
23813 1.296043 -0.6724793 0.7218124 2
23814 1.296043 -0.6724793 0.7218124 2
23815 1.296043 -0.6724793 0.7218124 2
23816 1.296043 -0.6724793 0.7218124 1
23817 1.296043 -0.6724793 0.7218124 2
23818 1.296043 -0.6724793 0.7218124 1
23819 1.296043 -0.6724793 0.7218124 3
23820 1.296043 -0.6724793 0.7218124 3
23821 1.296043 -0.6724793 0.7218124 3
23822 1.296043 -0.6724793 0.7218124 3
23823 1.296043 -0.6724793 0.7218124 3
23824 1.296043 -0.6724793 0.7218124 3
23825 1.296043 -0.6724793 0.7218124 3
23826 1.296043 -0.6724793 0.7218124 1
23827 1.296043 -0.6724793 0.7218124 3
23828 1.296043 -0.6724793 0.7218124 3
23829 1.296043 -0.6724793 0.7218124 2
23830 1.296043 -0.6724793 0.7218124 1
23831 1.296043 -0.6724793 0.7218124 2
23832 1.296043 -0.6724793 0.7218124 1
23833 1.296043 -0.6724793 0.7218124 3
23834 1.296043 -0.6724793 0.7218124 1
23835 1.296043 -0.6724793 0.7218124 3
23836 1.296043 -0.6724793 0.7218124 1
23837 1.296043 -0.6724793 0.7218124 1
23838 1.296043 -0.6724793 0.7218124 2
23839 1.296043 -0.6724793 0.7218124 3
23840 1.296043 -0.6724793 0.7218124 2
23841 1.296043 -0.6724793 0.7218124 3
23842 1.296043 -0.6724793 0.7218124 2
23843 1.296043 -0.6724793 0.7218124 1
23844 1.296043 -0.6724793 0.7218124 3
23845 1.296043 -0.6724793 0.7218124 2
23846 1.296043 -0.6724793 0.7218124 3
23847 1.296043 -0.6724793 0.7218124 3
23848 1.296043 -0.6724793 0.7218124 2
23849 1.296043 -0.6724793 0.7218124 3
23850 1.296043 -0.6724793 0.7218124 3
23851 1.296043 -0.6724793 0.7218124 3
23852 1.296043 -0.6724793 0.7218124 1
23853 1.296043 -0.6724793 0.7218124 3
23854 1.296043 -0.6724793 0.7218124 2
23855 1.296043 -0.6724793 0.7218124 2
23856 1.296043 -0.6724793 0.7218124 1
23857 1.296043 -0.6724793 0.7218124 3
23858 1.296043 -0.6724793 0.7218124 3
23859 1.296043 -0.6724793 0.7218124 2
23860 1.296043 -0.6724793 0.7218124 2
23861 1.296043 -0.6724793 0.7218124 1
23862 1.296043 -0.6724793 0.7218124 1
23863 1.296043 -0.6724793 0.7218124 3
23864 1.296043 -0.6724793 0.7218124 1
23865 1.296043 -0.6724793 0.7218124 3
23866 1.296043 -0.6724793 0.7218124 2
23867 1.296043 -0.6724793 0.7218124 1
23868 1.296043 -0.6724793 0.7218124 1
23869 1.296043 -0.6724793 0.7218124 3
23870 1.296043 -0.6724793 0.7218124 1
23871 1.296043 -0.6724793 0.7218124 3
23872 1.296043 -0.6724793 0.7218124 3
23873 1.296043 -0.6724793 0.7218124 2
23874 1.296043 -0.6724793 0.7218124 3
23875 1.296043 -0.6724793 0.7218124 1
23876 1.296043 -0.6724793 0.7218124 2
23877 1.296043 -0.6724793 0.7218124 2
23878 1.296043 -0.6724793 0.7218124 2
23879 1.296043 -0.6724793 0.7218124 1
23880 1.296043 -0.6724793 0.7218124 1
23881 1.296043 -0.6724793 0.7218124 3
23882 1.296043 -0.6724793 0.7218124 3
23883 1.296043 -0.6724793 0.7218124 1
23884 1.296043 -0.6724793 0.7218124 3
23885 1.296043 -0.6724793 0.7218124 1
23886 1.296043 -0.6724793 0.7218124 2
23887 1.296043 -0.6724793 0.7218124 3
23888 1.296043 -0.6724793 0.7218124 1
23889 1.296043 -0.6724793 0.7218124 2
23890 1.296043 -0.6724793 0.7218124 3
23891 1.296043 -0.6724793 0.7218124 1
23892 1.296043 -0.6724793 0.7218124 1
23893 1.296043 -0.6724793 0.7218124 2
23894 1.296043 -0.6724793 0.7218124 3
23895 1.285467 -0.6640003 0.7249780 2
23896 1.285467 -0.6640003 0.7249780 3
23897 1.285467 -0.6640003 0.7249780 1
23898 1.285467 -0.6640003 0.7249780 1
23899 1.285467 -0.6640003 0.7249780 1
23900 1.285467 -0.6640003 0.7249780 1
23901 1.285467 -0.6640003 0.7249780 1
23902 1.285467 -0.6640003 0.7249780 1
23903 1.285467 -0.6640003 0.7249780 2
23904 1.285467 -0.6640003 0.7249780 1
23905 1.285467 -0.6640003 0.7249780 2
23906 1.285467 -0.6640003 0.7249780 2
23907 1.285467 -0.6640003 0.7249780 1
23908 1.285467 -0.6640003 0.7249780 2
23909 1.285467 -0.6640003 0.7249780 1
23910 1.285467 -0.6640003 0.7249780 2
23911 1.285467 -0.6640003 0.7249780 3
23912 1.285467 -0.6640003 0.7249780 3
23913 1.285467 -0.6640003 0.7249780 2
23914 1.285467 -0.6640003 0.7249780 1
23915 1.285467 -0.6640003 0.7249780 3
23916 1.285467 -0.6640003 0.7249780 2
23917 1.285467 -0.6640003 0.7249780 1
23918 1.285467 -0.6640003 0.7249780 1
23919 1.285467 -0.6640003 0.7249780 2
23920 1.285467 -0.6640003 0.7249780 3
23921 1.285467 -0.6640003 0.7249780 2
23922 1.285467 -0.6640003 0.7249780 1
23923 1.285467 -0.6640003 0.7249780 3
23924 1.285467 -0.6640003 0.7249780 3
23925 1.285467 -0.6640003 0.7249780 3
23926 1.285467 -0.6640003 0.7249780 3
23927 1.285467 -0.6640003 0.7249780 1
23928 1.285467 -0.6640003 0.7249780 2
23929 1.285467 -0.6640003 0.7249780 2
23930 1.285467 -0.6640003 0.7249780 1
23931 1.285467 -0.6640003 0.7249780 2
23932 1.285467 -0.6640003 0.7249780 2
23933 1.285467 -0.6640003 0.7249780 3
23934 1.285467 -0.6640003 0.7249780 2
23935 1.285467 -0.6640003 0.7249780 3
23936 1.285467 -0.6640003 0.7249780 3
23937 1.285467 -0.6640003 0.7249780 1
23938 1.285467 -0.6640003 0.7249780 2
23939 1.285467 -0.6640003 0.7249780 1
23940 1.285467 -0.6640003 0.7249780 2
23941 1.285467 -0.6640003 0.7249780 1
23942 1.285467 -0.6640003 0.7249780 2
23943 1.285467 -0.6640003 0.7249780 1
23944 1.285467 -0.6640003 0.7249780 2
23945 1.285467 -0.6640003 0.7249780 1
23946 1.285467 -0.6640003 0.7249780 2
23947 1.285467 -0.6640003 0.7249780 3
23948 1.285467 -0.6640003 0.7249780 2
23949 1.285467 -0.6640003 0.7249780 1
23950 1.285467 -0.6640003 0.7249780 2
23951 1.285467 -0.6640003 0.7249780 1
23952 1.285467 -0.6640003 0.7249780 2
23953 1.285467 -0.6640003 0.7249780 3
23954 1.285467 -0.6640003 0.7249780 1
23955 1.285467 -0.6640003 0.7249780 3
23956 1.285467 -0.6640003 0.7249780 1
23957 1.285467 -0.6640003 0.7249780 2
23958 1.285467 -0.6640003 0.7249780 1
23959 1.285467 -0.6640003 0.7249780 2
23960 1.285467 -0.6640003 0.7249780 3
23961 1.285467 -0.6640003 0.7249780 3
23962 1.285467 -0.6640003 0.7249780 1
23963 1.285467 -0.6640003 0.7249780 1
23964 1.285467 -0.6640003 0.7249780 1
23965 1.285467 -0.6640003 0.7249780 2
23966 1.285467 -0.6640003 0.7249780 1
23967 1.285467 -0.6640003 0.7249780 1
23968 1.285467 -0.6640003 0.7249780 2
23969 1.285467 -0.6640003 0.7249780 2
23970 1.285467 -0.6640003 0.7249780 1
23971 1.285467 -0.6640003 0.7249780 1
23972 1.285467 -0.6640003 0.7249780 1
23973 1.285467 -0.6640003 0.7249780 2
23974 1.285467 -0.6640003 0.7249780 1
23975 1.285467 -0.6640003 0.7249780 1
23976 1.285467 -0.6640003 0.7249780 3
23977 1.285467 -0.6640003 0.7249780 3
23978 1.285467 -0.6640003 0.7249780 3
23979 1.285467 -0.6640003 0.7249780 3
23980 1.285467 -0.6640003 0.7249780 3
23981 1.285467 -0.6640003 0.7249780 2
23982 1.285467 -0.6640003 0.7249780 2
23983 1.285467 -0.6640003 0.7249780 2
23984 1.285467 -0.6640003 0.7249780 3
23985 1.285467 -0.6640003 0.7249780 3
23986 1.285467 -0.6640003 0.7249780 1
23987 1.285467 -0.6640003 0.7249780 1
23988 1.285467 -0.6640003 0.7249780 3
23989 1.285467 -0.6640003 0.7249780 1
23990 1.285467 -0.6640003 0.7249780 2
23991 1.285467 -0.6640003 0.7249780 1
23992 1.285467 -0.6640003 0.7249780 3
23993 1.285467 -0.6640003 0.7249780 3
23994 1.285467 -0.6640003 0.7249780 2
23995 1.285467 -0.6640003 0.7249780 2
23996 1.285467 -0.6640003 0.7249780 2
23997 1.285467 -0.6640003 0.7249780 2
23998 1.285467 -0.6640003 0.7249780 3
23999 1.285467 -0.6640003 0.7249780 1
24000 1.285467 -0.6640003 0.7249780 1
24001 1.285467 -0.6640003 0.7249780 3
24002 1.285467 -0.6640003 0.7249780 3
24003 1.285467 -0.6640003 0.7249780 1
24004 1.285467 -0.6640003 0.7249780 2
24005 1.285467 -0.6640003 0.7249780 1
24006 1.285467 -0.6640003 0.7249780 3
24007 1.285467 -0.6640003 0.7249780 3
24008 1.285467 -0.6640003 0.7249780 2
24009 1.285467 -0.6640003 0.7249780 3
24010 1.285467 -0.6640003 0.7249780 3
24011 1.285467 -0.6640003 0.7249780 2
24012 1.285467 -0.6640003 0.7249780 2
24013 1.285467 -0.6640003 0.7249780 1
24014 1.285467 -0.6640003 0.7249780 2
24015 1.285467 -0.6640003 0.7249780 1
24016 1.285467 -0.6640003 0.7249780 2
24017 1.285467 -0.6640003 0.7249780 2
24018 1.285467 -0.6640003 0.7249780 2
24019 1.285467 -0.6640003 0.7249780 3
24020 1.285467 -0.6640003 0.7249780 3
24021 1.285467 -0.6640003 0.7249780 1
24022 1.285467 -0.6640003 0.7249780 2
24023 1.285467 -0.6640003 0.7249780 3
24024 1.285467 -0.6640003 0.7249780 3
24025 1.285467 -0.6640003 0.7249780 3
24026 1.285467 -0.6640003 0.7249780 1
24027 1.285467 -0.6640003 0.7249780 3
24028 1.285467 -0.6640003 0.7249780 1
24029 1.285467 -0.6640003 0.7249780 3
24030 1.285467 -0.6640003 0.7249780 3
24031 1.285467 -0.6640003 0.7249780 2
24032 1.285467 -0.6640003 0.7249780 2
24033 1.285467 -0.6640003 0.7249780 1
24034 1.285467 -0.6640003 0.7249780 1
24035 1.285467 -0.6640003 0.7249780 3
24036 1.285467 -0.6640003 0.7249780 3
24037 1.285467 -0.6640003 0.7249780 3
24038 1.285467 -0.6640003 0.7249780 3
24039 1.285467 -0.6640003 0.7249780 1
24040 1.285467 -0.6640003 0.7249780 1
24041 1.285467 -0.6640003 0.7249780 2
24042 1.285467 -0.6640003 0.7249780 1
24043 1.285467 -0.6640003 0.7249780 3
24044 1.285467 -0.6640003 0.7249780 3
24045 1.285467 -0.6640003 0.7249780 1
24046 1.285467 -0.6640003 0.7249780 3
24047 1.285467 -0.6640003 0.7249780 3
24048 1.285467 -0.6640003 0.7249780 3
24049 1.285467 -0.6640003 0.7249780 2
24050 1.285467 -0.6640003 0.7249780 3
24051 1.285467 -0.6640003 0.7249780 1
24052 1.285467 -0.6640003 0.7249780 1
24053 1.285467 -0.6640003 0.7249780 3
24054 1.285467 -0.6640003 0.7249780 1
24055 1.285467 -0.6640003 0.7249780 3
24056 1.285467 -0.6640003 0.7249780 2
24057 1.285467 -0.6640003 0.7249780 2
24058 1.285467 -0.6640003 0.7249780 3
24059 1.285467 -0.6640003 0.7249780 1
24060 1.285467 -0.6640003 0.7249780 1
24061 1.285467 -0.6640003 0.7249780 2
24062 1.285467 -0.6640003 0.7249780 2
24063 1.285467 -0.6640003 0.7249780 1
24064 1.285467 -0.6640003 0.7249780 2
24065 1.285467 -0.6640003 0.7249780 2
24066 1.285467 -0.6640003 0.7249780 3
24067 1.285467 -0.6640003 0.7249780 2
24068 1.285467 -0.6640003 0.7249780 2
24069 1.285467 -0.6640003 0.7249780 2
24070 1.285467 -0.6640003 0.7249780 1
24071 1.285467 -0.6640003 0.7249780 1
24072 1.285467 -0.6640003 0.7249780 1
24073 1.285467 -0.6640003 0.7249780 3
24074 1.285467 -0.6640003 0.7249780 1
24075 1.285467 -0.6640003 0.7249780 3
24076 1.285467 -0.6640003 0.7249780 1
24077 1.285467 -0.6640003 0.7249780 1
24078 1.285467 -0.6640003 0.7249780 1
24079 1.285467 -0.6640003 0.7249780 1
24080 1.285467 -0.6640003 0.7249780 1
24081 1.285467 -0.6640003 0.7249780 3
24082 1.285467 -0.6640003 0.7249780 1
24083 1.285467 -0.6640003 0.7249780 2
24084 1.285467 -0.6640003 0.7249780 1
24085 1.285467 -0.6640003 0.7249780 3
24086 1.285467 -0.6640003 0.7249780 3
24087 1.285467 -0.6640003 0.7249780 1
24088 1.285467 -0.6640003 0.7249780 3
24089 1.285467 -0.6640003 0.7249780 3
24090 1.285467 -0.6640003 0.7249780 1
24091 1.285467 -0.6640003 0.7249780 1
24092 1.285467 -0.6640003 0.7249780 1
24093 1.285467 -0.6640003 0.7249780 2
24094 1.285467 -0.6640003 0.7249780 3
24095 1.285467 -0.6640003 0.7249780 2
24096 1.285467 -0.6640003 0.7249780 1
24097 1.285467 -0.6640003 0.7249780 1
24098 1.285467 -0.6640003 0.7249780 2
24099 1.285467 -0.6640003 0.7249780 1
24100 1.285467 -0.6640003 0.7249780 2
24101 1.285467 -0.6640003 0.7249780 1
24102 1.285467 -0.6640003 0.7249780 1
24103 1.285467 -0.6640003 0.7249780 1
24104 1.285467 -0.6640003 0.7249780 1
24105 1.285467 -0.6640003 0.7249780 1
24106 1.285467 -0.6640003 0.7249780 2
24107 1.285467 -0.6640003 0.7249780 2
24108 1.285467 -0.6640003 0.7249780 1
24109 1.285467 -0.6640003 0.7249780 3
24110 1.285467 -0.6640003 0.7249780 1
24111 1.285467 -0.6640003 0.7249780 3
24112 1.285467 -0.6640003 0.7249780 3
24113 1.285467 -0.6640003 0.7249780 2
24114 1.285467 -0.6640003 0.7249780 1
24115 1.285467 -0.6640003 0.7249780 1
24116 1.285467 -0.6640003 0.7249780 2
24117 1.285467 -0.6640003 0.7249780 1
24118 1.285467 -0.6640003 0.7249780 1
24119 1.285467 -0.6640003 0.7249780 3
24120 1.285467 -0.6640003 0.7249780 3
24121 1.285467 -0.6640003 0.7249780 2
24122 1.285467 -0.6640003 0.7249780 2
24123 1.285467 -0.6640003 0.7249780 2
24124 1.285467 -0.6640003 0.7249780 2
24125 1.285467 -0.6640003 0.7249780 2
24126 1.285467 -0.6640003 0.7249780 3
24127 1.285467 -0.6640003 0.7249780 3
24128 1.285467 -0.6640003 0.7249780 1
24129 1.285467 -0.6640003 0.7249780 1
24130 1.285467 -0.6640003 0.7249780 1
24131 1.285467 -0.6640003 0.7249780 1
24132 1.285467 -0.6640003 0.7249780 1
24133 1.285467 -0.6640003 0.7249780 1
24134 1.285467 -0.6640003 0.7249780 3
24135 1.285467 -0.6640003 0.7249780 2
24136 1.285467 -0.6640003 0.7249780 3
24137 1.285467 -0.6640003 0.7249780 2
24138 1.285467 -0.6640003 0.7249780 2
24139 1.285467 -0.6640003 0.7249780 3
24140 1.285467 -0.6640003 0.7249780 3
24141 1.285467 -0.6640003 0.7249780 2
24142 1.285467 -0.6640003 0.7249780 3
24143 1.285467 -0.6640003 0.7249780 2
24144 1.285467 -0.6640003 0.7249780 3
24145 1.285467 -0.6640003 0.7249780 2
24146 1.285467 -0.6640003 0.7249780 3
24147 1.285467 -0.6640003 0.7249780 2
24148 1.285467 -0.6640003 0.7249780 3
24149 1.285467 -0.6640003 0.7249780 2
24150 1.285467 -0.6640003 0.7249780 3
24151 1.285467 -0.6640003 0.7249780 1
24152 1.285467 -0.6640003 0.7249780 2
24153 1.285467 -0.6640003 0.7249780 1
24154 1.285467 -0.6640003 0.7249780 2
24155 1.285467 -0.6640003 0.7249780 3
24156 1.285467 -0.6640003 0.7249780 2
24157 1.285467 -0.6640003 0.7249780 1
24158 1.285467 -0.6640003 0.7249780 3
24159 1.285467 -0.6640003 0.7249780 1
24160 1.285467 -0.6640003 0.7249780 1
24161 1.285467 -0.6640003 0.7249780 1
24162 1.285467 -0.6640003 0.7249780 2
24163 1.285467 -0.6640003 0.7249780 2
24164 1.285467 -0.6640003 0.7249780 2
24165 1.285467 -0.6640003 0.7249780 1
24166 1.285467 -0.6640003 0.7249780 3
24167 1.285467 -0.6640003 0.7249780 1
24168 1.285467 -0.6640003 0.7249780 1
24169 1.285467 -0.6640003 0.7249780 3
24170 1.285467 -0.6640003 0.7249780 1
24171 1.285467 -0.6640003 0.7249780 1
24172 1.285467 -0.6640003 0.7249780 1
24173 1.285467 -0.6640003 0.7249780 3
24174 1.285467 -0.6640003 0.7249780 1
24175 1.285467 -0.6640003 0.7249780 2
24176 1.285467 -0.6640003 0.7249780 2
24177 1.285467 -0.6640003 0.7249780 2
24178 1.285467 -0.6640003 0.7249780 3
24179 1.285467 -0.6640003 0.7249780 1
24180 1.285467 -0.6640003 0.7249780 2
24181 1.285467 -0.6640003 0.7249780 2
24182 1.285467 -0.6640003 0.7249780 2
24183 1.285467 -0.6640003 0.7249780 3
24184 1.285467 -0.6640003 0.7249780 1
24185 1.285467 -0.6640003 0.7249780 1
24186 1.285467 -0.6640003 0.7249780 2
24187 1.285467 -0.6640003 0.7249780 3
24188 1.285467 -0.6640003 0.7249780 3
24189 1.285467 -0.6640003 0.7249780 1
24190 1.285467 -0.6640003 0.7249780 3
24191 1.285467 -0.6640003 0.7249780 1
24192 1.285467 -0.6640003 0.7249780 2
24193 1.285467 -0.6640003 0.7249780 3
24194 1.285467 -0.6640003 0.7249780 2
24195 1.285467 -0.6640003 0.7249780 1
24196 1.285467 -0.6640003 0.7249780 1
24197 1.285467 -0.6640003 0.7249780 1
24198 1.285467 -0.6640003 0.7249780 3
24199 1.285467 -0.6640003 0.7249780 2
24200 1.285467 -0.6640003 0.7249780 1
24201 1.285467 -0.6640003 0.7249780 3
24202 1.285467 -0.6640003 0.7249780 2
24203 1.285467 -0.6640003 0.7249780 2
24204 1.285467 -0.6640003 0.7249780 1
24205 1.285467 -0.6640003 0.7249780 3
24206 1.285467 -0.6640003 0.7249780 2
24207 1.285467 -0.6640003 0.7249780 3
24208 1.285467 -0.6640003 0.7249780 1
24209 1.285467 -0.6640003 0.7249780 2
24210 1.285467 -0.6640003 0.7249780 1
24211 1.285467 -0.6640003 0.7249780 1
24212 1.285467 -0.6640003 0.7249780 2
24213 1.285467 -0.6640003 0.7249780 2
24214 1.285467 -0.6640003 0.7249780 1
24215 1.285467 -0.6640003 0.7249780 2
24216 1.285467 -0.6640003 0.7249780 2
24217 1.285467 -0.6640003 0.7249780 3
24218 1.285467 -0.6640003 0.7249780 1
24219 1.285467 -0.6640003 0.7249780 3
24220 1.285467 -0.6640003 0.7249780 3
24221 1.285467 -0.6640003 0.7249780 1
24222 1.285467 -0.6640003 0.7249780 3
24223 1.285467 -0.6640003 0.7249780 2
24224 1.285467 -0.6640003 0.7249780 3
24225 1.285467 -0.6640003 0.7249780 1
24226 1.285467 -0.6640003 0.7249780 1
24227 1.285467 -0.6640003 0.7249780 3
24228 1.285467 -0.6640003 0.7249780 3
24229 1.285467 -0.6640003 0.7249780 1
24230 1.285467 -0.6640003 0.7249780 3
24231 1.285467 -0.6640003 0.7249780 1
24232 1.285467 -0.6640003 0.7249780 3
24233 1.285467 -0.6640003 0.7249780 2
24234 1.285467 -0.6640003 0.7249780 1
24235 1.285467 -0.6640003 0.7249780 2
24236 1.285467 -0.6640003 0.7249780 1
24237 1.285467 -0.6640003 0.7249780 2
24238 1.285467 -0.6640003 0.7249780 2
24239 1.285467 -0.6640003 0.7249780 1
24240 1.285467 -0.6640003 0.7249780 1
24241 1.285467 -0.6640003 0.7249780 2
24242 1.285467 -0.6640003 0.7249780 3
24243 1.285467 -0.6640003 0.7249780 3
24244 1.285467 -0.6640003 0.7249780 3
24245 1.285467 -0.6640003 0.7249780 3
24246 1.285467 -0.6640003 0.7249780 1
24247 1.285467 -0.6640003 0.7249780 3
24248 1.285467 -0.6640003 0.7249780 3
24249 1.285467 -0.6640003 0.7249780 3
24250 1.285467 -0.6640003 0.7249780 3
24251 1.285467 -0.6640003 0.7249780 2
24252 1.285467 -0.6640003 0.7249780 3
24253 1.285467 -0.6640003 0.7249780 1
24254 1.285467 -0.6640003 0.7249780 3
24255 1.285467 -0.6640003 0.7249780 2
24256 1.285467 -0.6640003 0.7249780 2
24257 1.285467 -0.6640003 0.7249780 3
24258 1.285467 -0.6640003 0.7249780 1
24259 1.285467 -0.6640003 0.7249780 3
24260 1.285467 -0.6640003 0.7249780 3
24261 1.285467 -0.6640003 0.7249780 2
24262 1.285467 -0.6640003 0.7249780 1
24263 1.285467 -0.6640003 0.7249780 1
24264 1.285467 -0.6640003 0.7249780 1
24265 1.285467 -0.6640003 0.7249780 2
24266 1.285467 -0.6640003 0.7249780 3
24267 1.285467 -0.6640003 0.7249780 2
24268 1.285467 -0.6640003 0.7249780 1
24269 1.285467 -0.6640003 0.7249780 3
24270 1.285467 -0.6640003 0.7249780 3
24271 1.285467 -0.6640003 0.7249780 1
24272 1.285467 -0.6640003 0.7249780 3
24273 1.285467 -0.6640003 0.7249780 3
24274 1.285467 -0.6640003 0.7249780 1
24275 1.285467 -0.6640003 0.7249780 1
24276 1.285467 -0.6640003 0.7249780 2
24277 1.285467 -0.6640003 0.7249780 1
24278 1.285467 -0.6640003 0.7249780 2
24279 1.285467 -0.6640003 0.7249780 2
24280 1.285467 -0.6640003 0.7249780 2
24281 1.285467 -0.6640003 0.7249780 3
24282 1.285467 -0.6640003 0.7249780 3
24283 1.285467 -0.6640003 0.7249780 1
24284 1.285467 -0.6640003 0.7249780 1
24285 1.285467 -0.6640003 0.7249780 1
24286 1.285467 -0.6640003 0.7249780 1
24287 1.285467 -0.6640003 0.7249780 1
24288 1.285467 -0.6640003 0.7249780 2
24289 1.285467 -0.6640003 0.7249780 1
24290 1.285467 -0.6640003 0.7249780 2
24291 1.285467 -0.6640003 0.7249780 3
24292 1.285467 -0.6640003 0.7249780 3
24293 1.285467 -0.6640003 0.7249780 3
24294 1.285467 -0.6640003 0.7249780 3
24295 1.285467 -0.6640003 0.7249780 2
24296 1.285467 -0.6640003 0.7249780 3
24297 1.285467 -0.6640003 0.7249780 1
24298 1.285467 -0.6640003 0.7249780 3
24299 1.285467 -0.6640003 0.7249780 3
24300 1.285467 -0.6640003 0.7249780 2
24301 1.285467 -0.6640003 0.7249780 3
24302 1.285467 -0.6640003 0.7249780 1
24303 1.285467 -0.6640003 0.7249780 2
24304 1.285467 -0.6640003 0.7249780 2
24305 1.285467 -0.6640003 0.7249780 2
24306 1.285467 -0.6640003 0.7249780 1
24307 1.285467 -0.6640003 0.7249780 3
24308 1.285467 -0.6640003 0.7249780 1
24309 1.285467 -0.6640003 0.7249780 2
24310 1.285467 -0.6640003 0.7249780 2
24311 1.285467 -0.6640003 0.7249780 2
24312 1.285467 -0.6640003 0.7249780 3
24313 1.285467 -0.6640003 0.7249780 3
24314 1.285467 -0.6640003 0.7249780 1
24315 1.285467 -0.6640003 0.7249780 2
24316 1.285467 -0.6640003 0.7249780 1
24317 1.285467 -0.6640003 0.7249780 3
24318 1.285467 -0.6640003 0.7249780 3
24319 1.285467 -0.6640003 0.7249780 1
24320 1.285467 -0.6640003 0.7249780 3
24321 1.285467 -0.6640003 0.7249780 1
24322 1.285467 -0.6640003 0.7249780 1
24323 1.285467 -0.6640003 0.7249780 3
24324 1.285467 -0.6640003 0.7249780 2
24325 1.285467 -0.6640003 0.7249780 2
24326 1.285467 -0.6640003 0.7249780 2
24327 1.285467 -0.6640003 0.7249780 3
24328 1.285467 -0.6640003 0.7249780 1
24329 1.285467 -0.6640003 0.7249780 3
24330 1.285467 -0.6640003 0.7249780 3
24331 1.285467 -0.6640003 0.7249780 3
24332 1.285467 -0.6640003 0.7249780 3
24333 1.285467 -0.6640003 0.7249780 3
24334 1.285467 -0.6640003 0.7249780 1
24335 1.285467 -0.6640003 0.7249780 2
24336 1.285467 -0.6640003 0.7249780 1
24337 1.285467 -0.6640003 0.7249780 3
24338 1.285467 -0.6640003 0.7249780 3
24339 1.285467 -0.6640003 0.7249780 3
24340 1.285467 -0.6640003 0.7249780 3
24341 1.285467 -0.6640003 0.7249780 1
24342 1.285467 -0.6640003 0.7249780 3
24343 1.285467 -0.6640003 0.7249780 1
24344 1.285467 -0.6640003 0.7249780 1
24345 1.285467 -0.6640003 0.7249780 1
24346 1.285467 -0.6640003 0.7249780 3
24347 1.285467 -0.6640003 0.7249780 2
24348 1.285467 -0.6640003 0.7249780 1
24349 1.285467 -0.6640003 0.7249780 2
24350 1.285467 -0.6640003 0.7249780 2
24351 1.285467 -0.6640003 0.7249780 1
24352 1.285467 -0.6640003 0.7249780 1
24353 1.285467 -0.6640003 0.7249780 1
24354 1.285467 -0.6640003 0.7249780 3
24355 1.285467 -0.6640003 0.7249780 1
24356 1.285467 -0.6640003 0.7249780 1
24357 1.285467 -0.6640003 0.7249780 1
24358 1.285467 -0.6640003 0.7249780 2
24359 1.285467 -0.6640003 0.7249780 2
24360 1.285467 -0.6640003 0.7249780 2
24361 1.285467 -0.6640003 0.7249780 1
24362 1.285467 -0.6640003 0.7249780 1
24363 1.285467 -0.6640003 0.7249780 1
24364 1.285467 -0.6640003 0.7249780 1
24365 1.285467 -0.6640003 0.7249780 2
24366 1.285467 -0.6640003 0.7249780 2
24367 1.285467 -0.6640003 0.7249780 1
24368 1.285467 -0.6640003 0.7249780 1
24369 1.285467 -0.6640003 0.7249780 1
24370 1.285467 -0.6640003 0.7249780 3
24371 1.285467 -0.6640003 0.7249780 1
24372 1.285467 -0.6640003 0.7249780 1
24373 1.285467 -0.6640003 0.7249780 1
24374 1.285467 -0.6640003 0.7249780 2
24375 1.285467 -0.6640003 0.7249780 3
24376 1.285467 -0.6640003 0.7249780 3
24377 1.285467 -0.6640003 0.7249780 1
24378 1.285467 -0.6640003 0.7249780 1
24379 1.285467 -0.6640003 0.7249780 1
24380 1.285467 -0.6640003 0.7249780 3
24381 1.285467 -0.6640003 0.7249780 2
24382 1.285467 -0.6640003 0.7249780 2
24383 1.285467 -0.6640003 0.7249780 3
24384 1.285467 -0.6640003 0.7249780 2
24385 1.285467 -0.6640003 0.7249780 2
24386 1.285467 -0.6640003 0.7249780 3
24387 1.285467 -0.6640003 0.7249780 2
24388 1.285467 -0.6640003 0.7249780 2
24389 1.285467 -0.6640003 0.7249780 2
24390 1.285467 -0.6640003 0.7249780 2
24391 1.285467 -0.6640003 0.7249780 2
24392 1.285467 -0.6640003 0.7249780 2
24393 1.285467 -0.6640003 0.7249780 3
24394 1.285467 -0.6640003 0.7249780 1
24395 1.285467 -0.6640003 0.7249780 1
24396 1.285467 -0.6640003 0.7249780 1
24397 1.285467 -0.6640003 0.7249780 2
24398 1.285467 -0.6640003 0.7249780 3
24399 1.285467 -0.6640003 0.7249780 1
24400 1.285467 -0.6640003 0.7249780 2
24401 1.285467 -0.6640003 0.7249780 3
24402 1.285467 -0.6640003 0.7249780 3
24403 1.285467 -0.6640003 0.7249780 3
24404 1.285467 -0.6640003 0.7249780 3
24405 1.285467 -0.6640003 0.7249780 3
24406 1.285467 -0.6640003 0.7249780 2
24407 1.285467 -0.6640003 0.7249780 2
24408 1.285467 -0.6640003 0.7249780 3
24409 1.285467 -0.6640003 0.7249780 1
24410 1.285467 -0.6640003 0.7249780 2
24411 1.285467 -0.6640003 0.7249780 2
24412 1.285467 -0.6640003 0.7249780 3
24413 1.285467 -0.6640003 0.7249780 1
24414 1.285467 -0.6640003 0.7249780 2
24415 1.285467 -0.6640003 0.7249780 3
24416 1.285467 -0.6640003 0.7249780 2
24417 1.285467 -0.6640003 0.7249780 2
24418 1.285467 -0.6640003 0.7249780 1
24419 1.285467 -0.6640003 0.7249780 3
24420 1.285467 -0.6640003 0.7249780 3
24421 1.285467 -0.6640003 0.7249780 3
24422 1.285467 -0.6640003 0.7249780 1
24423 1.285467 -0.6640003 0.7249780 2
24424 1.285467 -0.6640003 0.7249780 1
24425 1.285467 -0.6640003 0.7249780 1
24426 1.285467 -0.6640003 0.7249780 2
24427 1.285467 -0.6640003 0.7249780 2
24428 1.285467 -0.6640003 0.7249780 1
24429 1.285467 -0.6640003 0.7249780 1
24430 1.285467 -0.6640003 0.7249780 2
24431 1.285467 -0.6640003 0.7249780 1
24432 1.285467 -0.6640003 0.7249780 3
24433 1.285467 -0.6640003 0.7249780 2
24434 1.285467 -0.6640003 0.7249780 1
24435 1.285467 -0.6640003 0.7249780 1
24436 1.285467 -0.6640003 0.7249780 1
24437 1.285467 -0.6640003 0.7249780 1
24438 1.285467 -0.6640003 0.7249780 1
24439 1.285467 -0.6640003 0.7249780 2
24440 1.285467 -0.6640003 0.7249780 3
24441 1.285467 -0.6640003 0.7249780 3
24442 1.285467 -0.6640003 0.7249780 3
24443 1.285467 -0.6640003 0.7249780 3
24444 1.285467 -0.6640003 0.7249780 1
24445 1.285467 -0.6640003 0.7249780 3
24446 1.285467 -0.6640003 0.7249780 2
24447 1.285467 -0.6640003 0.7249780 1
24448 1.285467 -0.6640003 0.7249780 3
24449 1.285467 -0.6640003 0.7249780 1
24450 1.285467 -0.6640003 0.7249780 1
24451 1.285467 -0.6640003 0.7249780 2
24452 1.285467 -0.6640003 0.7249780 2
24453 1.285467 -0.6640003 0.7249780 3
24454 1.285467 -0.6640003 0.7249780 2
24455 1.285467 -0.6640003 0.7249780 2
24456 1.285467 -0.6640003 0.7249780 3
24457 1.285467 -0.6640003 0.7249780 1
24458 1.285467 -0.6640003 0.7249780 1
24459 1.285467 -0.6640003 0.7249780 1
24460 1.285467 -0.6640003 0.7249780 2
24461 1.285467 -0.6640003 0.7249780 3
24462 1.285467 -0.6640003 0.7249780 2
24463 1.285467 -0.6640003 0.7249780 3
24464 1.285467 -0.6640003 0.7249780 1
24465 1.285467 -0.6640003 0.7249780 1
24466 1.285467 -0.6640003 0.7249780 3
24467 1.285467 -0.6640003 0.7249780 1
24468 1.285467 -0.6640003 0.7249780 1
24469 1.285467 -0.6640003 0.7249780 1
24470 1.285467 -0.6640003 0.7249780 3
24471 1.285467 -0.6640003 0.7249780 3
24472 1.285467 -0.6640003 0.7249780 2
24473 1.285467 -0.6640003 0.7249780 2
24474 1.285467 -0.6640003 0.7249780 1
24475 1.285467 -0.6640003 0.7249780 3
24476 1.285467 -0.6640003 0.7249780 3
24477 1.285467 -0.6640003 0.7249780 3
24478 1.285467 -0.6640003 0.7249780 3
24479 1.285467 -0.6640003 0.7249780 3
24480 1.285467 -0.6640003 0.7249780 2
24481 1.285467 -0.6640003 0.7249780 1
24482 1.285467 -0.6640003 0.7249780 3
24483 1.285467 -0.6640003 0.7249780 3
24484 1.285467 -0.6640003 0.7249780 3
24485 1.285467 -0.6640003 0.7249780 2
24486 1.285467 -0.6640003 0.7249780 2
24487 1.285467 -0.6640003 0.7249780 2
24488 1.285467 -0.6640003 0.7249780 1
24489 1.285467 -0.6640003 0.7249780 1
24490 1.285467 -0.6640003 0.7249780 1
24491 1.285467 -0.6640003 0.7249780 2
24492 1.285467 -0.6640003 0.7249780 3
24493 1.285467 -0.6640003 0.7249780 1
24494 1.285467 -0.6640003 0.7249780 3
24495 1.285467 -0.6640003 0.7249780 1
24496 1.285467 -0.6640003 0.7249780 3
24497 1.285467 -0.6640003 0.7249780 3
24498 1.285467 -0.6640003 0.7249780 3
24499 1.285467 -0.6640003 0.7249780 1
24500 1.285467 -0.6640003 0.7249780 3
24501 1.285467 -0.6640003 0.7249780 1
24502 1.285467 -0.6640003 0.7249780 1
24503 1.285467 -0.6640003 0.7249780 1
24504 1.285467 -0.6640003 0.7249780 2
24505 1.285467 -0.6640003 0.7249780 1
24506 1.285467 -0.6640003 0.7249780 3
24507 1.285467 -0.6640003 0.7249780 2
24508 1.285467 -0.6640003 0.7249780 1
24509 1.285467 -0.6640003 0.7249780 3
24510 1.285467 -0.6640003 0.7249780 2
24511 1.285467 -0.6640003 0.7249780 1
24512 1.285467 -0.6640003 0.7249780 3
24513 1.285467 -0.6640003 0.7249780 1
24514 1.285467 -0.6640003 0.7249780 2
24515 1.285467 -0.6640003 0.7249780 2
24516 1.285467 -0.6640003 0.7249780 1
24517 1.285467 -0.6640003 0.7249780 1
24518 1.285467 -0.6640003 0.7249780 1
24519 1.285467 -0.6640003 0.7249780 3
24520 1.285467 -0.6640003 0.7249780 2
24521 1.285467 -0.6640003 0.7249780 3
24522 1.285467 -0.6640003 0.7249780 3
24523 1.285467 -0.6640003 0.7249780 2
24524 1.285467 -0.6640003 0.7249780 1
24525 1.285467 -0.6640003 0.7249780 3
24526 1.285467 -0.6640003 0.7249780 1
24527 1.285467 -0.6640003 0.7249780 2
24528 1.285467 -0.6640003 0.7249780 1
24529 1.285467 -0.6640003 0.7249780 2
24530 1.285467 -0.6640003 0.7249780 1
24531 1.285467 -0.6640003 0.7249780 1
24532 1.285467 -0.6640003 0.7249780 2
24533 1.285467 -0.6640003 0.7249780 2
24534 1.285467 -0.6640003 0.7249780 3
24535 1.285467 -0.6640003 0.7249780 1
24536 1.285467 -0.6640003 0.7249780 3
24537 1.285467 -0.6640003 0.7249780 1
24538 1.285467 -0.6640003 0.7249780 1
24539 1.285467 -0.6640003 0.7249780 2
24540 1.285467 -0.6640003 0.7249780 1
24541 1.285467 -0.6640003 0.7249780 1
24542 1.285467 -0.6640003 0.7249780 2
24543 1.285467 -0.6640003 0.7249780 1
24544 1.285467 -0.6640003 0.7249780 3
24545 1.285467 -0.6640003 0.7249780 2
24546 1.285467 -0.6640003 0.7249780 2
24547 1.285467 -0.6640003 0.7249780 1
24548 1.285467 -0.6640003 0.7249780 3
24549 1.285467 -0.6640003 0.7249780 3
24550 1.285467 -0.6640003 0.7249780 1
24551 1.285467 -0.6640003 0.7249780 2
24552 1.285467 -0.6640003 0.7249780 3
24553 1.285467 -0.6640003 0.7249780 2
24554 1.285467 -0.6640003 0.7249780 2
24555 1.285467 -0.6640003 0.7249780 3
24556 1.285467 -0.6640003 0.7249780 2
24557 1.285467 -0.6640003 0.7249780 1
24558 1.285467 -0.6640003 0.7249780 1
24559 1.285467 -0.6640003 0.7249780 3
24560 1.285467 -0.6640003 0.7249780 3
24561 1.285467 -0.6640003 0.7249780 2
24562 1.285467 -0.6640003 0.7249780 1
24563 1.285467 -0.6640003 0.7249780 1
24564 1.285467 -0.6640003 0.7249780 1
24565 1.285467 -0.6640003 0.7249780 1
24566 1.285467 -0.6640003 0.7249780 3
24567 1.285467 -0.6640003 0.7249780 3
24568 1.285467 -0.6640003 0.7249780 1
24569 1.285467 -0.6640003 0.7249780 3
24570 1.285467 -0.6640003 0.7249780 3
24571 1.285467 -0.6640003 0.7249780 1
24572 1.285467 -0.6640003 0.7249780 1
24573 1.285467 -0.6640003 0.7249780 2
24574 1.285467 -0.6640003 0.7249780 3
24575 1.285467 -0.6640003 0.7249780 3
24576 1.285467 -0.6640003 0.7249780 3
24577 1.285467 -0.6640003 0.7249780 3
24578 1.285467 -0.6640003 0.7249780 2
24579 1.285467 -0.6640003 0.7249780 2
24580 1.285467 -0.6640003 0.7249780 1
24581 1.285467 -0.6640003 0.7249780 2
24582 1.285467 -0.6640003 0.7249780 1
24583 1.285467 -0.6640003 0.7249780 1
24584 1.285467 -0.6640003 0.7249780 3
24585 1.285467 -0.6640003 0.7249780 1
24586 1.285467 -0.6640003 0.7249780 2
24587 1.285467 -0.6640003 0.7249780 1
24588 1.285467 -0.6640003 0.7249780 1
24589 1.285467 -0.6640003 0.7249780 3
24590 1.285467 -0.6640003 0.7249780 3
24591 1.285467 -0.6640003 0.7249780 2
24592 1.285467 -0.6640003 0.7249780 1
24593 1.285467 -0.6640003 0.7249780 2
24594 1.285467 -0.6640003 0.7249780 2
24595 1.285467 -0.6640003 0.7249780 2
24596 1.285467 -0.6640003 0.7249780 3
24597 1.285467 -0.6640003 0.7249780 1
24598 1.285467 -0.6640003 0.7249780 2
24599 1.285467 -0.6640003 0.7249780 1
24600 1.285467 -0.6640003 0.7249780 1
24601 1.285467 -0.6640003 0.7249780 2
24602 1.285467 -0.6640003 0.7249780 3
24603 1.285467 -0.6640003 0.7249780 2
24604 1.285467 -0.6640003 0.7249780 1
24605 1.285467 -0.6640003 0.7249780 3
24606 1.285467 -0.6640003 0.7249780 3
24607 1.285467 -0.6640003 0.7249780 3
24608 1.285467 -0.6640003 0.7249780 2
24609 1.285467 -0.6640003 0.7249780 2
24610 1.285467 -0.6640003 0.7249780 3
24611 1.285467 -0.6640003 0.7249780 2
24612 1.285467 -0.6640003 0.7249780 2
24613 1.285467 -0.6640003 0.7249780 2
24614 1.285467 -0.6640003 0.7249780 3
24615 1.285467 -0.6640003 0.7249780 3
24616 1.285467 -0.6640003 0.7249780 3
24617 1.285467 -0.6640003 0.7249780 3
24618 1.285467 -0.6640003 0.7249780 2
24619 1.285467 -0.6640003 0.7249780 3
24620 1.285467 -0.6640003 0.7249780 1
24621 1.285467 -0.6640003 0.7249780 1
24622 1.285467 -0.6640003 0.7249780 3
24623 1.285467 -0.6640003 0.7249780 1
24624 1.285467 -0.6640003 0.7249780 1
24625 1.285467 -0.6640003 0.7249780 1
24626 1.285467 -0.6640003 0.7249780 3
24627 1.285467 -0.6640003 0.7249780 1
24628 1.285467 -0.6640003 0.7249780 3
24629 1.285467 -0.6640003 0.7249780 1
24630 1.285467 -0.6640003 0.7249780 3
24631 1.285467 -0.6640003 0.7249780 2
24632 1.285467 -0.6640003 0.7249780 3
24633 1.285467 -0.6640003 0.7249780 2
24634 1.285467 -0.6640003 0.7249780 1
24635 1.285467 -0.6640003 0.7249780 1
24636 1.285467 -0.6640003 0.7249780 2
24637 1.285467 -0.6640003 0.7249780 1
24638 1.285467 -0.6640003 0.7249780 2
24639 1.285467 -0.6640003 0.7249780 1
24640 1.285467 -0.6640003 0.7249780 1
24641 1.285467 -0.6640003 0.7249780 1
24642 1.285467 -0.6640003 0.7249780 1
24643 1.285467 -0.6640003 0.7249780 2
24644 1.285467 -0.6640003 0.7249780 2
24645 1.285467 -0.6640003 0.7249780 2
24646 1.285467 -0.6640003 0.7249780 2
24647 1.285467 -0.6640003 0.7249780 3
24648 1.285467 -0.6640003 0.7249780 1
24649 1.285467 -0.6640003 0.7249780 1
24650 1.285467 -0.6640003 0.7249780 2
24651 1.285467 -0.6640003 0.7249780 3
24652 1.285467 -0.6640003 0.7249780 2
24653 1.285467 -0.6640003 0.7249780 3
24654 1.285467 -0.6640003 0.7249780 2
24655 1.285467 -0.6640003 0.7249780 3
24656 1.285467 -0.6640003 0.7249780 3
24657 1.285467 -0.6640003 0.7249780 1
24658 1.285467 -0.6640003 0.7249780 1
24659 1.285467 -0.6640003 0.7249780 1
24660 1.285467 -0.6640003 0.7249780 2
24661 1.285467 -0.6640003 0.7249780 1
24662 1.285467 -0.6640003 0.7249780 1
24663 1.285467 -0.6640003 0.7249780 3
24664 1.285467 -0.6640003 0.7249780 1
24665 1.285467 -0.6640003 0.7249780 1
24666 1.285467 -0.6640003 0.7249780 3
24667 1.285467 -0.6640003 0.7249780 1
24668 1.285467 -0.6640003 0.7249780 2
24669 1.285467 -0.6640003 0.7249780 3
24670 1.285467 -0.6640003 0.7249780 1
24671 1.285467 -0.6640003 0.7249780 3
24672 1.285467 -0.6640003 0.7249780 3
24673 1.285467 -0.6640003 0.7249780 1
24674 1.285467 -0.6640003 0.7249780 2
24675 1.285467 -0.6640003 0.7249780 2
24676 1.285467 -0.6640003 0.7249780 2
24677 1.285467 -0.6640003 0.7249780 2
24678 1.285467 -0.6640003 0.7249780 3
24679 1.285467 -0.6640003 0.7249780 3
24680 1.285467 -0.6640003 0.7249780 1
24681 1.285467 -0.6640003 0.7249780 2
24682 1.285467 -0.6640003 0.7249780 3
24683 1.285467 -0.6640003 0.7249780 1
24684 1.285467 -0.6640003 0.7249780 3
24685 1.285467 -0.6640003 0.7249780 1
24686 1.285467 -0.6640003 0.7249780 2
24687 1.285467 -0.6640003 0.7249780 2
24688 1.285467 -0.6640003 0.7249780 1
24689 1.285467 -0.6640003 0.7249780 3
24690 1.285467 -0.6640003 0.7249780 1
24691 1.285467 -0.6640003 0.7249780 2
24692 1.285467 -0.6640003 0.7249780 2
24693 1.285467 -0.6640003 0.7249780 2
24694 1.285467 -0.6640003 0.7249780 1
24695 1.285467 -0.6640003 0.7249780 3
24696 1.285467 -0.6640003 0.7249780 1
24697 1.285467 -0.6640003 0.7249780 2
24698 1.285467 -0.6640003 0.7249780 2
24699 1.285467 -0.6640003 0.7249780 2
24700 1.285467 -0.6640003 0.7249780 1
24701 1.285467 -0.6640003 0.7249780 3
24702 1.285467 -0.6640003 0.7249780 2
24703 1.285467 -0.6640003 0.7249780 1
24704 1.285467 -0.6640003 0.7249780 2
24705 1.285467 -0.6640003 0.7249780 3
24706 1.285467 -0.6640003 0.7249780 3
24707 1.285467 -0.6640003 0.7249780 1
24708 1.285467 -0.6640003 0.7249780 1
24709 1.285467 -0.6640003 0.7249780 2
24710 1.285467 -0.6640003 0.7249780 2
24711 1.285467 -0.6640003 0.7249780 1
24712 1.285467 -0.6640003 0.7249780 2
24713 1.285467 -0.6640003 0.7249780 3
24714 1.285467 -0.6640003 0.7249780 1
24715 1.285467 -0.6640003 0.7249780 1
24716 1.285467 -0.6640003 0.7249780 1
24717 1.285467 -0.6640003 0.7249780 1
24718 1.285467 -0.6640003 0.7249780 1
24719 1.285467 -0.6640003 0.7249780 2
24720 1.285467 -0.6640003 0.7249780 1
24721 1.285467 -0.6640003 0.7249780 1
24722 1.285467 -0.6640003 0.7249780 3
24723 1.285467 -0.6640003 0.7249780 2
24724 1.285467 -0.6640003 0.7249780 2
24725 1.285467 -0.6640003 0.7249780 3
24726 1.285467 -0.6640003 0.7249780 2
24727 1.285467 -0.6640003 0.7249780 3
24728 1.285467 -0.6640003 0.7249780 3
24729 1.285467 -0.6640003 0.7249780 2
24730 1.285467 -0.6640003 0.7249780 3
24731 1.285467 -0.6640003 0.7249780 1
24732 1.285467 -0.6640003 0.7249780 1
24733 1.285467 -0.6640003 0.7249780 2
24734 1.285467 -0.6640003 0.7249780 2
24735 1.285467 -0.6640003 0.7249780 3
24736 1.285467 -0.6640003 0.7249780 1
24737 1.285467 -0.6640003 0.7249780 3
24738 1.285467 -0.6640003 0.7249780 1
24739 1.285467 -0.6640003 0.7249780 2
24740 1.285467 -0.6640003 0.7249780 1
24741 1.285467 -0.6640003 0.7249780 3
24742 1.285467 -0.6640003 0.7249780 1
24743 1.285467 -0.6640003 0.7249780 3
24744 1.285467 -0.6640003 0.7249780 3
24745 1.285467 -0.6640003 0.7249780 3
24746 1.285467 -0.6640003 0.7249780 1
24747 1.285467 -0.6640003 0.7249780 1
24748 1.285467 -0.6640003 0.7249780 1
24749 1.285467 -0.6640003 0.7249780 1
24750 1.285467 -0.6640003 0.7249780 2
24751 1.285467 -0.6640003 0.7249780 2
24752 1.285467 -0.6640003 0.7249780 1
24753 1.285467 -0.6640003 0.7249780 3
24754 1.285467 -0.6640003 0.7249780 1
24755 1.285467 -0.6640003 0.7249780 1
24756 1.285467 -0.6640003 0.7249780 2
24757 1.285467 -0.6640003 0.7249780 1
24758 1.285467 -0.6640003 0.7249780 3
24759 1.285467 -0.6640003 0.7249780 3
24760 1.285467 -0.6640003 0.7249780 3
24761 1.285467 -0.6640003 0.7249780 3
24762 1.285467 -0.6640003 0.7249780 3
24763 1.285467 -0.6640003 0.7249780 2
24764 1.285467 -0.6640003 0.7249780 2
24765 1.285467 -0.6640003 0.7249780 1
24766 1.285467 -0.6640003 0.7249780 1
24767 1.285467 -0.6640003 0.7249780 3
24768 1.285467 -0.6640003 0.7249780 2
24769 1.285467 -0.6640003 0.7249780 1
24770 1.285467 -0.6640003 0.7249780 3
24771 1.285467 -0.6640003 0.7249780 3
24772 1.285467 -0.6640003 0.7249780 3
24773 1.285467 -0.6640003 0.7249780 3
24774 1.285467 -0.6640003 0.7249780 3
24775 1.285467 -0.6640003 0.7249780 2
24776 1.285467 -0.6640003 0.7249780 3
24777 1.285467 -0.6640003 0.7249780 1
24778 1.285467 -0.6640003 0.7249780 3
24779 1.285467 -0.6640003 0.7249780 1
24780 1.285467 -0.6640003 0.7249780 1
24781 1.285467 -0.6640003 0.7249780 2
24782 1.285467 -0.6640003 0.7249780 2
24783 1.285467 -0.6640003 0.7249780 2
24784 1.285467 -0.6640003 0.7249780 1
24785 1.285467 -0.6640003 0.7249780 2
24786 1.285467 -0.6640003 0.7249780 2
24787 1.285467 -0.6640003 0.7249780 1
24788 1.285467 -0.6640003 0.7249780 1
24789 1.285467 -0.6640003 0.7249780 3
24790 1.285467 -0.6640003 0.7249780 2
24791 1.285467 -0.6640003 0.7249780 1
24792 1.285467 -0.6640003 0.7249780 3
24793 1.285467 -0.6640003 0.7249780 3
24794 1.285467 -0.6640003 0.7249780 2
24795 1.285467 -0.6640003 0.7249780 1
24796 1.285467 -0.6640003 0.7249780 2
24797 1.285467 -0.6640003 0.7249780 3
24798 1.285467 -0.6640003 0.7249780 3
24799 1.285467 -0.6640003 0.7249780 3
24800 1.285467 -0.6640003 0.7249780 2
24801 1.285467 -0.6640003 0.7249780 2
24802 1.285467 -0.6640003 0.7249780 1
24803 1.285467 -0.6640003 0.7249780 3
24804 1.285467 -0.6640003 0.7249780 2
24805 1.285467 -0.6640003 0.7249780 3
24806 1.285467 -0.6640003 0.7249780 2
24807 1.285467 -0.6640003 0.7249780 3
24808 1.285467 -0.6640003 0.7249780 3
24809 1.285467 -0.6640003 0.7249780 3
24810 1.285467 -0.6640003 0.7249780 2
24811 1.285467 -0.6640003 0.7249780 1
24812 1.285467 -0.6640003 0.7249780 1
24813 1.285467 -0.6640003 0.7249780 3
24814 1.291683 -0.6564944 0.7223563 2
24815 1.291683 -0.6564944 0.7223563 2
24816 1.291683 -0.6564944 0.7223563 2
24817 1.291683 -0.6564944 0.7223563 1
24818 1.291683 -0.6564944 0.7223563 3
24819 1.291683 -0.6564944 0.7223563 3
24820 1.291683 -0.6564944 0.7223563 2
24821 1.291683 -0.6564944 0.7223563 1
24822 1.291683 -0.6564944 0.7223563 2
24823 1.291683 -0.6564944 0.7223563 3
24824 1.291683 -0.6564944 0.7223563 2
24825 1.291683 -0.6564944 0.7223563 2
24826 1.291683 -0.6564944 0.7223563 1
24827 1.291683 -0.6564944 0.7223563 1
24828 1.291683 -0.6564944 0.7223563 3
24829 1.291683 -0.6564944 0.7223563 1
24830 1.291683 -0.6564944 0.7223563 1
24831 1.291683 -0.6564944 0.7223563 2
24832 1.291683 -0.6564944 0.7223563 1
24833 1.291683 -0.6564944 0.7223563 3
24834 1.291683 -0.6564944 0.7223563 1
24835 1.291683 -0.6564944 0.7223563 3
24836 1.291683 -0.6564944 0.7223563 1
24837 1.291683 -0.6564944 0.7223563 2
24838 1.291683 -0.6564944 0.7223563 1
24839 1.291683 -0.6564944 0.7223563 1
24840 1.291683 -0.6564944 0.7223563 3
24841 1.291683 -0.6564944 0.7223563 3
24842 1.291683 -0.6564944 0.7223563 3
24843 1.291683 -0.6564944 0.7223563 2
24844 1.291683 -0.6564944 0.7223563 2
24845 1.291683 -0.6564944 0.7223563 1
24846 1.291683 -0.6564944 0.7223563 2
24847 1.291683 -0.6564944 0.7223563 3
24848 1.291683 -0.6564944 0.7223563 2
24849 1.291683 -0.6564944 0.7223563 1
24850 1.291683 -0.6564944 0.7223563 1
24851 1.291683 -0.6564944 0.7223563 1
24852 1.291683 -0.6564944 0.7223563 2
24853 1.291683 -0.6564944 0.7223563 1
24854 1.291683 -0.6564944 0.7223563 1
24855 1.291683 -0.6564944 0.7223563 3
24856 1.291683 -0.6564944 0.7223563 3
24857 1.291683 -0.6564944 0.7223563 1
24858 1.291683 -0.6564944 0.7223563 2
24859 1.291683 -0.6564944 0.7223563 2
24860 1.291683 -0.6564944 0.7223563 1
24861 1.291683 -0.6564944 0.7223563 3
24862 1.291683 -0.6564944 0.7223563 2
24863 1.291683 -0.6564944 0.7223563 3
24864 1.291683 -0.6564944 0.7223563 3
24865 1.291683 -0.6564944 0.7223563 2
24866 1.291683 -0.6564944 0.7223563 3
24867 1.291683 -0.6564944 0.7223563 2
24868 1.291683 -0.6564944 0.7223563 2
24869 1.291683 -0.6564944 0.7223563 2
24870 1.291683 -0.6564944 0.7223563 1
24871 1.291683 -0.6564944 0.7223563 1
24872 1.291683 -0.6564944 0.7223563 1
24873 1.291683 -0.6564944 0.7223563 1
24874 1.291683 -0.6564944 0.7223563 1
24875 1.291683 -0.6564944 0.7223563 2
24876 1.291683 -0.6564944 0.7223563 1
24877 1.291683 -0.6564944 0.7223563 3
24878 1.291683 -0.6564944 0.7223563 3
24879 1.291683 -0.6564944 0.7223563 1
24880 1.291683 -0.6564944 0.7223563 3
24881 1.291683 -0.6564944 0.7223563 3
24882 1.291683 -0.6564944 0.7223563 3
24883 1.291683 -0.6564944 0.7223563 1
24884 1.291683 -0.6564944 0.7223563 2
24885 1.291683 -0.6564944 0.7223563 1
24886 1.291683 -0.6564944 0.7223563 2
24887 1.291683 -0.6564944 0.7223563 2
24888 1.291683 -0.6564944 0.7223563 2
24889 1.291683 -0.6564944 0.7223563 3
24890 1.291683 -0.6564944 0.7223563 2
24891 1.291683 -0.6564944 0.7223563 1
24892 1.291683 -0.6564944 0.7223563 1
24893 1.291683 -0.6564944 0.7223563 2
24894 1.291683 -0.6564944 0.7223563 3
24895 1.291683 -0.6564944 0.7223563 1
24896 1.291683 -0.6564944 0.7223563 2
24897 1.291683 -0.6564944 0.7223563 1
24898 1.291683 -0.6564944 0.7223563 1
24899 1.291683 -0.6564944 0.7223563 1
24900 1.291683 -0.6564944 0.7223563 2
24901 1.291683 -0.6564944 0.7223563 2
24902 1.291683 -0.6564944 0.7223563 1
24903 1.291683 -0.6564944 0.7223563 3
24904 1.291683 -0.6564944 0.7223563 2
24905 1.291683 -0.6564944 0.7223563 2
24906 1.291683 -0.6564944 0.7223563 1
24907 1.291683 -0.6564944 0.7223563 3
24908 1.291683 -0.6564944 0.7223563 3
24909 1.291683 -0.6564944 0.7223563 3
24910 1.291683 -0.6564944 0.7223563 3
24911 1.291683 -0.6564944 0.7223563 3
24912 1.291683 -0.6564944 0.7223563 1
24913 1.291683 -0.6564944 0.7223563 2
24914 1.291683 -0.6564944 0.7223563 2
24915 1.291683 -0.6564944 0.7223563 2
24916 1.291683 -0.6564944 0.7223563 3
24917 1.291683 -0.6564944 0.7223563 2
24918 1.291683 -0.6564944 0.7223563 1
24919 1.291683 -0.6564944 0.7223563 1
24920 1.291683 -0.6564944 0.7223563 1
24921 1.291683 -0.6564944 0.7223563 3
24922 1.291683 -0.6564944 0.7223563 3
24923 1.291683 -0.6564944 0.7223563 1
24924 1.291683 -0.6564944 0.7223563 1
24925 1.291683 -0.6564944 0.7223563 2
24926 1.291683 -0.6564944 0.7223563 1
24927 1.291683 -0.6564944 0.7223563 1
24928 1.291683 -0.6564944 0.7223563 2
24929 1.291683 -0.6564944 0.7223563 1
24930 1.291683 -0.6564944 0.7223563 3
24931 1.291683 -0.6564944 0.7223563 3
24932 1.291683 -0.6564944 0.7223563 3
24933 1.291683 -0.6564944 0.7223563 1
24934 1.291683 -0.6564944 0.7223563 1
24935 1.291683 -0.6564944 0.7223563 2
24936 1.291683 -0.6564944 0.7223563 2
24937 1.291683 -0.6564944 0.7223563 3
24938 1.291683 -0.6564944 0.7223563 1
24939 1.291683 -0.6564944 0.7223563 2
24940 1.291683 -0.6564944 0.7223563 1
24941 1.291683 -0.6564944 0.7223563 3
24942 1.291683 -0.6564944 0.7223563 2
24943 1.291683 -0.6564944 0.7223563 1
24944 1.291683 -0.6564944 0.7223563 3
24945 1.291683 -0.6564944 0.7223563 1
24946 1.291683 -0.6564944 0.7223563 2
24947 1.291683 -0.6564944 0.7223563 1
24948 1.291683 -0.6564944 0.7223563 1
24949 1.291683 -0.6564944 0.7223563 2
24950 1.291683 -0.6564944 0.7223563 3
24951 1.291683 -0.6564944 0.7223563 1
24952 1.291683 -0.6564944 0.7223563 2
24953 1.291683 -0.6564944 0.7223563 1
24954 1.291683 -0.6564944 0.7223563 1
24955 1.291683 -0.6564944 0.7223563 1
24956 1.291683 -0.6564944 0.7223563 1
24957 1.291683 -0.6564944 0.7223563 3
24958 1.291683 -0.6564944 0.7223563 2
24959 1.291683 -0.6564944 0.7223563 1
24960 1.291683 -0.6564944 0.7223563 2
24961 1.291683 -0.6564944 0.7223563 3
24962 1.291683 -0.6564944 0.7223563 1
24963 1.291683 -0.6564944 0.7223563 3
24964 1.291683 -0.6564944 0.7223563 1
24965 1.291683 -0.6564944 0.7223563 1
24966 1.291683 -0.6564944 0.7223563 1
24967 1.291683 -0.6564944 0.7223563 3
24968 1.291683 -0.6564944 0.7223563 3
24969 1.291683 -0.6564944 0.7223563 2
24970 1.291683 -0.6564944 0.7223563 3
24971 1.291683 -0.6564944 0.7223563 1
24972 1.291683 -0.6564944 0.7223563 2
24973 1.291683 -0.6564944 0.7223563 2
24974 1.291683 -0.6564944 0.7223563 2
24975 1.291683 -0.6564944 0.7223563 1
24976 1.291683 -0.6564944 0.7223563 2
24977 1.291683 -0.6564944 0.7223563 3
24978 1.291683 -0.6564944 0.7223563 1
24979 1.291683 -0.6564944 0.7223563 1
24980 1.291683 -0.6564944 0.7223563 3
24981 1.291683 -0.6564944 0.7223563 2
24982 1.291683 -0.6564944 0.7223563 1
24983 1.291683 -0.6564944 0.7223563 3
24984 1.291683 -0.6564944 0.7223563 1
24985 1.291683 -0.6564944 0.7223563 3
24986 1.291683 -0.6564944 0.7223563 3
24987 1.291683 -0.6564944 0.7223563 1
24988 1.291683 -0.6564944 0.7223563 2
24989 1.291683 -0.6564944 0.7223563 1
24990 1.291683 -0.6564944 0.7223563 2
24991 1.291683 -0.6564944 0.7223563 2
24992 1.291683 -0.6564944 0.7223563 1
24993 1.291683 -0.6564944 0.7223563 1
24994 1.291683 -0.6564944 0.7223563 1
24995 1.291683 -0.6564944 0.7223563 1
24996 1.291683 -0.6564944 0.7223563 1
24997 1.291683 -0.6564944 0.7223563 3
24998 1.291683 -0.6564944 0.7223563 2
24999 1.291683 -0.6564944 0.7223563 3
 [ reached 'max' / getOption("max.print") -- omitted 20951 rows ]

We can use this dataframe to see how continuous parameters and discrete latent variables evolve across iterations. This can be better seen in the plot below. We observe meaningful variation in all parameters, confirming that the Stan fits are responding to the updated values of Z and that we are successfully exploring the posterior.

hybrid_results_df$iteration <- 1:nrow(hybrid_results_df)

# Reshape to long format
hybrid_long <- pivot_longer(
  hybrid_results_df,
  cols = c(mu_alpha, beta, sigma),
  names_to = "parameter",
  values_to = "value"
)

# Plot all parameter trajectories side by side
ggplot(hybrid_long, aes(x = iteration, y = value)) +
  geom_line(color = "steelblue") +
  facet_wrap(~ parameter, scales = "free_y") +
  labs(
    title = "Posterior Mean Estimates Over Hybrid Sampling Iterations",
    x = "Iteration",
    y = "Posterior Mean"
  ) +
  theme_minimal()

Convergence Checks for Continuous Parameters

After running the hybrid sampler, we can extract the continuous parameter samples from the final Stan fit and run our automated diagnostics:

final_fit <- fit_cont
hybrid_diag <- run_diagnostics(final_fit, model_name = "hybrid_continuous")

print(hybrid_diag)
         Parameter      Rhat      ESS             Model LOO_ELPD
beta          beta 1.0000185 4851.749 hybrid_continuous -1033.88
mu_alpha  mu_alpha 1.0000488 3440.179 hybrid_continuous -1033.88
tau            tau 1.0018310 1410.625 hybrid_continuous -1033.88
sigma        sigma 0.9998817 5364.361 hybrid_continuous -1033.88

Model Comparison

Finally, we compare the hybrid model’s continuous component to those from the the best-performing standard model — the centered hierarchical model with a dense mass matrix.

combined_hybrid_diag <- bind_rows(dense_diag, hybrid_diag)
print(combined_hybrid_diag)
             Parameter      Rhat      ESS             Model  LOO_ELPD
beta...1          beta 1.0003583 6580.948 dense_mass_matrix -1037.346
mu_alpha...2  mu_alpha 0.9997937 6229.065 dense_mass_matrix -1037.346
tau...3            tau 1.0001146 2147.312 dense_mass_matrix -1037.346
sigma...4        sigma 0.9996516 7291.118 dense_mass_matrix -1037.346
beta...5          beta 1.0000185 4851.749 hybrid_continuous -1033.880
mu_alpha...6  mu_alpha 1.0000488 3440.179 hybrid_continuous -1033.880
tau...7            tau 1.0018310 1410.625 hybrid_continuous -1033.880
sigma...8        sigma 0.9998817 5364.361 hybrid_continuous -1033.880

From this final dataframe, we can argue that the hybrid model is the best performing model overall. It shows a modest but consistent improvement in predictive performance (LOO-ELPD = −1034.4 vs −1037.3) but at the same time maintains excellent convergence diagnostics. However, it is slightly less efficient in terms of sampling (lower ESS) we shall not prioritize sampling efficiency over predictive power when it comes to our model performance here. Furthermore, it offers a richer model structure by including discrete latent variables, potentially capturing residual variation that the baseline dense model does not account for. We shall explore the difference in the final Discussion section.

6. Discussion

To illustrate the difference in the two final models, we will most importantly plot the posterior of the corresponding parameters. The summary of the point estimates can also be seen below.

draws_dense <- as_draws_df(fit_dense)
draws_hybrid <- as_draws_df(final_fit)  # final_fit = last Stan fit from hybrid sampler

# Labels:
draws_dense$model <- "Dense"
draws_hybrid$model <- "Hybrid"

draws_combined <- rbind(
  draws_dense[, c("mu_alpha", "beta", "sigma", "tau", "model")],
  draws_hybrid[, c("mu_alpha", "beta", "sigma", "tau", "model")]
)
Warning: Dropping 'draws_df' class as required metadata was removed.
Warning: Dropping 'draws_df' class as required metadata was removed.

draws_long <- pivot_longer(draws_combined, cols = -model, names_to = "parameter", values_to = "value")

ggplot(draws_long, aes(x = value, fill = model)) +
  geom_density(alpha = 0.5) +
  facet_wrap(~ parameter, scales = "free", ncol = 2) +
  labs(title = "Posterior Distributions: Hybrid vs Dense Model",
       x = "Parameter Value", y = "Density") +
  theme_minimal()

#Point estimates:
print(final_fit, pars = c("mu_alpha", "beta", "tau", "sigma"), probs = c(0.025, 0.5, 0.975))
Inference for Stan model: anon_model.
4 chains, each with iter=1500; warmup=500; thin=1; 
post-warmup draws per chain=1000, total post-warmup draws=4000.

          mean se_mean   sd  2.5%   50% 97.5% n_eff Rhat
mu_alpha  1.29       0 0.05  1.20  1.29  1.39  3440    1
beta     -0.67       0 0.07 -0.80 -0.67 -0.54  4852    1
tau       0.32       0 0.05  0.24  0.31  0.42  1411    1
sigma     0.72       0 0.02  0.69  0.72  0.76  5364    1

Samples were drawn using NUTS(diag_e) at Tue Mar 25 11:43:14 2025.
For each parameter, n_eff is a crude measure of effective sample size,
and Rhat is the potential scale reduction factor on split chains (at 
convergence, Rhat=1).

Based on the final hybrid model, we estimate that the average log-radon level (intercept) across counties is approximately 1.30. The negative coefficient on floor suggests that radon levels tend to be significantly lower on upper floors than in basements. The between-county variability (tau) and within-county residual variability (sigma) are are also positive, indicating that counties truly differ from each other and a´houses within a county also vary. This highlights the need for a hierarchical model as ours.

To wrap this up, we can say that we sucessfully improved the model even though it is not by a lot. To deepen this, further research could explore dynamic hierarchical models where the latent structure evolves over time, or incorporate spatial dependencies between counties to better capture geographical patterns in radon exposure.

7. Conclusion

References

Gelman, A. (2006). Prior distributions for variance parameters in hierarchical models (comment on article by Browne and Draper). Bayesian Analysis, 1(3), 515–533.

Gelman, A., & Hill, J. (2007). Data Analysis Using Regression and Multilevel/Hierarchical Models. Cambridge University Press.

Gelman, A., Carlin, J. B., Stern, H. S., Dunson, D. B., Vehtari, A., & Rubin, D. B. (2013). Bayesian Data Analysis (3rd ed.). Chapman & Hall/CRC.

Hoffman, M. D., & Gelman, A. (2014). The No-U-Turn Sampler: Adaptively Setting Path Lengths in Hamiltonian Monte Carlo. Journal of Machine Learning Research, 15(1), 1593–1623.

Papaspiliopoulos, O., Roberts, G. O., & Sköld, M. (2003). Non-centered parameterizations for hierarchical models and data augmentation. Bayesian Statistics, 7, 307–326.

Robert, C. P., & Casella, G. (2004). Monte Carlo Statistical Methods (2nd ed.). Springer.